html {
    font-size: 14px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

div#body {
    padding: 0 0 0 0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

#surveyWall {
    width: 100%;
}

#surveyDropDown {
    box-shadow: 0 0 0 0;
}

:root {
    --sv-primary: #059669;
    --sv-primary-dark: #047857;
    --sv-accent: #fb923c;
    --sv-accent-dark: #ea580c;
    --sv-bg-light: #f0fdf4;
    --sv-bg-gradient: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    --sv-border: #d1fae5;
    --sv-text-muted: #6b7280;
    --sv-danger: #ef4444;
    --sv-warning: #f59e0b;
    --sv-success: #10b981;
}

.page-header-sv {
    background: white;
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.page-header-padding-top {
    padding: 4rem 0 3rem 0;
}

.page-header-primary {
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-primary-dark) 100%);
}

.page-header-accent {
    background: linear-gradient(135deg, var(--sv-accent) 0%, var(--sv-accent-dark) 100%);
}

.page-header-center {
    text-align: center;
}

.page-header-sv::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 20s infinite linear;
        z-index: 1;
    }

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 0.97rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    margin: 0 8px 0 8px;
}

    .hero-link:hover {
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.95);
        transform: translateY(-2px);
    }

body {
    background: var(--sv-bg-gradient);
    min-height: 100vh;
}

.row {
    margin: 0;
}

.page-icon {
    width: 60px;
    height: 60px;
    background: var(--sv-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.page-title {
    color: var(--sv-primary);
    font-size: 2rem;
    font-weight: 700;
}

.page-subtitle {
    color: var(--sv-text-muted);
    font-size: 1.1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-link {
    color: var(--sv-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover {
        color: var(--sv-primary-dark);
    }

/* Content Section */
.content-section {
    padding: 3rem 0;
}

/* Cards */
.card-sv {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    overflow: hidden;
}

.status-card.enabled .card-header {
    background: var(--sv-success);
}

.status-card.disabled .card-header {
    background: var(--sv-warning);
}

.status-card-accent .card-header {
    background: var(--sv-accent);
    color: white;
}

.card-body {
    padding: 2rem;
}

.add-login-card .card-body {
    padding: 2rem;
}

.info-card {
    background: rgba(5, 150, 105, 0.05);
    border: 1px solid var(--sv-border);
    border-radius: 12px;
}

/* Icons */
.info-icon {
    width: 40px;
    height: 40px;
    background: var(--sv-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

    .status-icon.success {
        background: rgba(16, 185, 129, 0.08);
        color: var(--sv-success);
    }

    .status-icon.warning {
        background: rgba(245, 158, 11, 0.08);
        color: var(--sv-warning);
    }

.recovery-icon {
    width: 40px;
    height: 40px;
    background: var(--sv-success);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
}

.provider-icon {
    width: 40px;
    height: 40px;
    background: var(--sv-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.provider-icon-btn {
    font-size: 1.2rem;
}

.empty-state-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

    /* Note: Two versions of empty-state-icon for different contexts */
    .empty-state-icon.warning {
        background: var(--sv-warning);
    }

    .empty-state-icon.primary {
        background: var(--sv-primary);
    }

/* Form Styling */
.form-label {
    color: var(--sv-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control-sv {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .form-control-sv:focus {
        border-color: var(--sv-primary);
        box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
        outline: none;
    }

    .form-control-sv:disabled {
        background-color: #f9fafb;
        border-color: #d1d5db;
        color: #6b7280;
    }

.input-group-text {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-right: none;
    color: var(--sv-text-muted);
}

.input-group .form-control-sv {
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--sv-primary);
    background: rgba(5, 150, 105, 0.05);
}

.btn-sv-tertiary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(251, 146, 60, 0.15); /* Subtle orange tint */
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

    .btn-sv-tertiary:hover {
        background: rgba(251, 146, 60, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-1px);
        text-decoration: none;
    }

    .btn-sv-tertiary i {
        opacity: 0.8;
    }

.btn-sv-danger {
    background: var(--sv-danger);
    border-color: var(--sv-danger);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

    .btn-sv-danger:hover {
        background: #dc2626;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        transform: translateY(-1px);
    }

.btn-sv-danger-sm {
    background: var(--sv-danger);
    border-color: var(--sv-danger);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
}

    .btn-sv-danger-sm:hover {
        background: #dc2626;
        border-color: #dc2626;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        color: white;
    }

.btn-sv-warning {
    background: var(--sv-warning);
    border-color: var(--sv-warning);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

    .btn-sv-warning:hover {
        background: #d97706;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        transform: translateY(-1px);
    }

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--sv-primary);
    height: 100%;
    margin-bottom: 2rem;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--sv-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    color: var(--sv-primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Transactions */
.transactions-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
}

    .transactions-card .card-header {
        background: var(--sv-primary);
        color: white;
        border-radius: 0.75rem 0.75rem 0 0;
        padding: 1.5rem;
        border: none;
    }

    .transactions-card .card-body {
        padding: 0;
    }

.table th {
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    border-color: #f1f5f9;
}

.earning-amount {
    color: var(--sv-primary) !important;
    font-weight: 700;
}

.privacy-link {
    color: var(--sv-primary);
    text-decoration: none;
}

    .privacy-link:hover {
        color: var(--sv-primary-dark);
    }

/* Button group spacing */
.btn-group-sv {
    gap: 0.75rem;
}

/* Action Buttons */
.action-buttons, .authenticator-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* External Providers */
.external-providers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Connected Logins */
.connected-logins {
    padding: 0;
}

.login-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

    .login-item:last-child {
        border-bottom: none;
    }

    .login-item:hover {
        background: rgba(5, 150, 105, 0.02);
    }

.provider-name {
    color: var(--sv-primary);
    font-weight: 600;
}

/* Alert Styling */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
    border-radius: 8px;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #d97706;
}

.alert-icon {
    font-size: 1.2rem;
    margin-top: 0.125rem;
}

.alert-link {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

.text-danger {
    color: #dc2626 !important;
}

/* Authenticator Info */
.authenticator-info {
    background: rgba(5, 150, 105, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Form Text */
.form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 576px) {
    .add-login-card .card-body {
        padding: 1.5rem;
    }

    .login-item {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    #surveyWall {
        height: 1000px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    #surveyWall {
        height: 900px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: 400px;
    }

    .btn-group-sv {
        flex-direction: column;
        align-items: center;
    }

        .btn-group-sv .btn {
            width: 200px;
        }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .personal-data-card .card-body {
        padding: 1.5rem;
    }

    .login-item {
        padding: 1.25rem 1.5rem;
    }

    .action-buttons, .authenticator-actions {
        flex-direction: column;
    }

        .action-buttons .btn, .authenticator-actions .btn {
            width: 100%;
        }

    .d-flex.gap-3 {
        flex-direction: column;
    }

        .d-flex.gap-3 .btn {
            width: 100%;
        }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }

    .register-page {
        padding: 1rem;
        min-height: calc(100vh - 60px);
    }

    .register-body {
        padding: 2rem 1.5rem;
    }

    .register-title {
        font-size: 2rem;
    }

    .register-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .register-benefits {
        gap: 1rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }

    .page {
        padding: 1rem;
        min-height: calc(100vh - 60px);
    }

    .card-body {
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .card-header {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-subtitle {
        font-size: 1.1rem;
    }

    .privacy-highlights-row {
        gap: 1rem;
    }

    .highlight-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .policy-card .card-body {
        padding: 2rem 1.5rem;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        margin: 0 0.25rem;
    }

    .transactions-title {
        font-size: 2.5rem;
    }

    .transactions-subtitle {
        font-size: 1.1rem;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1.5rem;
        margin: 0 0.25rem;
    }

    .transfer-title {
        font-size: 2.5rem;
    }

    .transfer-subtitle {
        font-size: 1.1rem;
    }

    .transfer-card .card-body {
        padding: 1.5rem;
    }

    .col-lg-6 {
        padding: 0 1rem;
    }

    .survey-title {
        font-size: 2.5rem;
    }

    .survey-subtitle {
        font-size: 1.1rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .iframe-container {
        height: 1000px;
    }

    .auth-content {
        padding: 2rem 1.5rem;
    }

    .auth-buttons {
        flex-direction: column;
        align-items: center;
    }

        .auth-buttons .btn {
            width: 200px;
        }

    .nav-pills-sv {
        flex-direction: column;
    }

    .nav-link-sv {
        text-align: center;
    }

    .value-props {
        flex-direction: column;
        gap: 1rem !important;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .sidebar-nav-card {
        position: static;
        margin-bottom: 2rem;
    }

    .nav-pills-sv {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

        .nav-pills-sv .nav-item {
            flex: 0 0 auto;
        }

    .nav-link-sv {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .nav-icon {
        margin-right: 0.5rem;
    }
}

/* ---------------------------
   Register / Auth - additions
   --------------------------- */

/* Back to home small utility */
.back-home-section {
    margin-top: 2rem;
    text-align: center;
}

.btn-back-home {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .btn-back-home:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

/* Page layout */
.register-page {
    background: var(--sv-bg-gradient);
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.register-container {
    max-width: 950px;
    margin: 0 auto;
}

.register-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
    overflow: hidden;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

/* Header with subtle pin-dot background */
.register-header {
    background: linear-gradient(135deg, var(--sv-accent) 0%, var(--sv-accent-dark) 100%);
    color: white;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .register-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 18s infinite linear;
        z-index: 1;
    }

.register-header-content {
    position: relative;
    z-index: 2;
}

.register-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.register-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Benefits row */
.register-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Card body / form layout */
.register-body {
    padding: 2.5rem;
}

.form-section {
    margin-bottom: 2rem;
}

/* Section title (scoped) */
.section-title {
    color: var(--sv-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form-floating specific rules (scoped to .form-floating using native .form-control) */
.form-floating {
    margin-bottom: 1.5rem;
}

    .form-floating .form-control {
        border: 2px solid #e5e7eb;
        border-radius: 0.75rem;
        padding: 1rem 0.75rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .form-floating .form-control:focus {
            border-color: var(--sv-primary);
            box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.15);
            outline: none;
        }

    .form-floating label {
        color: #6b7280;
        font-weight: 500;
    }

/* Divider utility */
.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e5e7eb;
    }

    .divider span {
        background: white;
        padding: 0 1rem;
        color: #6b7280;
        font-weight: 500;
    }

/* Scoped text-danger for register forms (do not overwrite global .text-danger) */
.register .text-danger {
    color: #ef4444 !important; /* scoped change */
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* External login / privacy / password extras */
.external-login-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

    .external-login-section h3 {
        color: var(--sv-primary);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
    }

.privacy-notice {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

    .privacy-notice h4 {
        color: var(--sv-primary);
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.privacy-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--sv-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.password-requirements {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #713f12;
}

    .password-requirements h6 {
        color: #92400e;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .password-requirements ul {
        margin: 0;
        padding-left: 1.2rem;
    }

.no-external-message {
    text-align: center;
    color: #6b7280;
}

/* ---------------------------
   Login page (additions)
   --------------------------- */

/* Back to home utility (if not already present) */
.back-home-section {
    margin-top: 2rem;
    text-align: center;
}

.btn-back-home {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .btn-back-home:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

/* Layout */
.card-page {
    background: var(--sv-bg-gradient);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
    overflow: hidden;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

/* Header with pin-dot background (isolated animation) */
.card-header {
    background: linear-gradient(135deg, var(--sv-primary) 0%, var(--sv-primary-dark) 100%);
    color: white;
    padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .card-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 15s infinite linear;
        z-index: 1;
    }

.card-header-content {
    position: relative;
    z-index: 2;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.card-body {
    padding: 2.5rem;
}

/* Shared small utilities (if not already defined) */
.form-section {
    margin-bottom: 2rem;
}

.section-title {
    color: var(--sv-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

    .form-floating .form-control {
        border: 2px solid #e5e7eb;
        border-radius: 0.75rem;
        padding: 1rem 0.75rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .form-floating .form-control:focus {
            border-color: var(--sv-primary);
            box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.15);
            outline: none;
        }

    .form-floating label {
        color: #6b7280;
        font-weight: 500;
    }

/* Form-check */
.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: var(--sv-primary);
    border-color: var(--sv-primary);
}

.form-check-input:focus {
    border-color: var(--sv-primary);
    box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.15);
}

.form-check-label {
    color: #374151;
    font-weight: 500;
}

/* Login links area */
.login-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

    .login-links a {
        color: var(--sv-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .login-links a:hover {
            color: var(--sv-primary-dark);
            text-decoration: underline;
        }

    .login-links p {
        margin-bottom: 0.5rem;
    }

/* Divider util (if not present) */
.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e5e7eb;
    }

    .divider span {
        background: white;
        padding: 0 1rem;
        color: #6b7280;
        font-weight: 500;
    }

/* Scoped text-danger for login (do not overwrite global .text-danger) */
.page .text-danger {
    color: #ef4444 !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* External login block */
.external-login-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

    .external-login-section h3 {
        color: var(--sv-primary);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
    }

/* ---------------------------
   Privacy page (additions)
   --------------------------- */

.privacy-page {
    background: var(--sv-bg-gradient);
    min-height: calc(100vh - 80px);
    padding: 0;
}

.privacy-header-content {
    position: relative;
    z-index: 2;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Highlights — row variant (named to avoid clobbering existing .privacy-highlights grid) */
.privacy-highlights-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

/* Content / cards */
.privacy-content {
    padding: 3rem 0;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 2rem;
}

    .nav-tabs .nav-link {
        background: white;
        border: 2px solid #e5e7eb;
        color: #6b7280;
        font-weight: 600;
        padding: 0.875rem 2rem;
        margin: 0 0.5rem;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }

        .nav-tabs .nav-link:hover {
            border-color: var(--sv-primary);
            color: var(--sv-primary);
            background: #f0fdf4;
        }

        .nav-tabs .nav-link.active {
            background: var(--sv-primary);
            border-color: var(--sv-primary);
            color: white;
        }

.policy-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    overflow: hidden;
}

    .policy-card .card-body {
        padding: 2.5rem;
    }

    .policy-card h2 {
        color: var(--sv-primary);
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .policy-card h6 {
        color: var(--sv-primary);
        font-size: 1.2rem;
        font-weight: 700;
        margin: 2rem 0 1rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0fdf4;
    }

    .policy-card ul {
        margin-bottom: 1.5rem;
    }

    .policy-card li {
        margin-bottom: 0.75rem;
        padding-left: 0.5rem;
        line-height: 1.6;
    }

        .policy-card li strong {
            color: var(--sv-primary-dark);
            font-weight: 600;
        }

    .policy-card p {
        margin-bottom: 1.5rem;
        line-height: 1.7;
        color: #374151;
    }

/* Effective date callout */
.effective-date {
    background: #f8fafc;
    border-left: 4px solid var(--sv-accent);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

/* No marketing callout */
.no-marketing-callout {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid var(--sv-primary);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

    .no-marketing-callout h6 {
        color: var(--sv-primary);
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 1rem;
        border: none;
        padding: 0;
    }

    .no-marketing-callout .highlight-text {
        font-size: 1.1rem;
        color: var(--sv-primary-dark);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

/* Email types and security features */
.email-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.email-type-item {
    background: white;
    border: 1px solid #d1fae5;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--sv-primary-dark);
    font-size: 0.9rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.security-feature {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--sv-primary);
}

    .security-feature h6 {
        color: var(--sv-primary);
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        border: none;
        padding: 0;
    }

    .security-feature p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* Rights grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.rights-item {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #92400e;
}

/* ---------------------------
   Transactions page
   --------------------------- */

.transactions-page {
    background: var(--sv-bg-gradient);
    min-height: 100vh;
    padding: 0;
}

.transactions-header-content {
    position: relative;
    z-index: 2;
}

.transactions-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transactions-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.transactions-content {
    padding: 3rem 0;
}

.transactions-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

    .transactions-card .card-header {
        background: var(--sv-primary);
        color: white;
        border-radius: 1rem 1rem 0 0;
        padding: 1.5rem;
        border: none;
    }

    .transactions-card .card-body {
        padding: 0;
    }

.table th {
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    border-color: #f1f5f9;
}

.earning-amount {
    color: var(--sv-primary) !important;
    font-weight: 700;
}

.transfer-amount {
    color: #ef4444 !important;
    font-weight: 700;
}

/* ---------------------------
   Transfer page
   --------------------------- */

.transfer-page {
    background: var(--sv-bg-gradient);
    min-height: 100vh;
    padding: 0;
}

.transfer-header-content {
    position: relative;
    z-index: 2;
}

.transfer-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transfer-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.transfer-content {
    padding: 3rem 0;
}

.transfer-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    overflow: hidden;
}

    .transfer-card .card-header {
        background: var(--sv-primary);
        color: white;
        border-radius: 1rem 1rem 0 0;
        padding: 1.5rem;
        border: none;
    }

    .transfer-card .card-body {
        padding: 2rem;
    }

.transfer-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--sv-accent);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

.modal-header {
    background: var(--sv-primary);
    color: white;
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
    border: none;
}

.modal-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1.5rem;
    border: none;
    gap: 1rem;
}

.confirmation-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.amount-highlight {
    color: var(--sv-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.email-highlight {
    color: var(--sv-primary-dark);
    font-weight: 600;
    background: #f0fdf4;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    border: 1px solid #d1fae5;
}

/* Success Modal */
.success-icon {
    margin-bottom: 1rem;
}

.success-checkmark {
    width: 60px;
    height: 60px;
    background: var(--sv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.success-message {
    font-size: 1.2rem;
    color: var(--sv-primary-dark);
    font-weight: 600;
}

.success-details {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.processing-note {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Error Modal */
.error-icon {
    margin-bottom: 1rem;
}

.error-x {
    width: 60px;
    height: 60px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.error-message {
    font-size: 1.2rem;
    color: #ef4444;
    font-weight: 600;
}

.failure-reason {
    color: #6b7280;
    font-size: 0.95rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 0;
}

.security-notice {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid var(--sv-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.security-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.security-notice p {
    color: var(--sv-primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

/* ---------------------------
   Survey page
   --------------------------- */

.survey-page {
    background: var(--sv-bg-gradient);
    min-height: 100vh;
    padding: 0;
}

.survey-header-content {
    position: relative;
    z-index: 2;
}

.survey-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.survey-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.survey-content {
    padding: 3rem 0;
}

.survey-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

    .survey-card .card-header {
        background: var(--sv-primary);
        color: white;
        border-radius: 1rem 1rem 0 0;
        padding: 1.5rem;
        border: none;
    }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.survey-card .card-body {
    padding: 0;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
}

.survey-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #f8fafc;
}

/* Auth Required Card */
.auth-required-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.auth-content {
    padding: 3rem 2rem;
    text-align: center;
}

.auth-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.auth-content h3 {
    color: var(--sv-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-content p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sidebar-nav-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--sv-border);
    overflow: hidden;
    position: sticky;
    top: 2rem;
}

.sidebar-header {
    background: var(--sv-primary);
    color: white;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.sidebar-body {
    padding: 0.5rem;
}

.nav-pills-sv {
    gap: 0.25rem;
}

    .nav-pills-sv .nav-item {
        margin-bottom: 0;
    }

.nav-link-sv {
    color: var(--sv-text-muted);
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    border: 2px solid transparent;
    margin: 0.125rem 0;
}

    .nav-link-sv:hover {
        background: rgba(5, 150, 105, 0.08);
        color: var(--sv-primary-dark);
        transform: translateX(4px);
        text-decoration: none;
    }

    .nav-link-sv.active {
        background: var(--sv-primary);
        color: white;
        border-color: var(--sv-primary);
        box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    }

        .nav-link-sv.active:hover {
            background: var(--sv-primary-dark);
            color: white;
            transform: translateX(0);
        }

.nav-icon {
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.nav-link-sv.active .nav-icon {
    opacity: 1;
}

.commission-our-share {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

.commission-your-share {
    background-color: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

.comparison-card {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    height: 100%;
}

.comparison-card {
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    height: 100%;
}

    .comparison-card.other-sites {
        background: #f8f9fa;
        border: 2px solid #dee2e6;
    }

    .comparison-card.surveyvault {
        background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
        border: 2px solid var(--sv-primary, #007bff);
    }

.comparison-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .comparison-list li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

        .comparison-list li:last-child {
            border-bottom: none;
        }

.personal-touch-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--sv-primary, #007bff);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .contact-link:hover {
        background: var(--sv-primary-dark, #0056b3);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.no-marketing-note {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/**
    * Base button styles for SurveyVault
    * Used as a foundation for other button variants
*/
.btn-sv-base {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
    backdrop-filter: blur(10px);
}

.btn-sv-primary {
    border-color: var(--sv-primary);
    color: white;
    background: var(--sv-primary);
}

    .btn-sv-primary:hover {
        border-color: var(--sv-primary-dark);
        color: white;
        background: var(--sv-primary-dark);
    }

.btn-sv-accent {
    border-color: var(--sv-accent);
    color: white;
    background: var(--sv-accent);
}

    .btn-sv-accent:hover {
        border-color: var(--sv-accent-dark);
        color: white;
        background: var(--sv-accent-dark);
    }

.btn-sv-external {
    border: 2px solid var(--sv-primary);
    color: var(--sv-primary);
    background: white;
}

    .btn-sv-external:hover {
        border-color: var(--sv-primary);
        color: var(--sv-primary-dark);
        background: rgba(5, 150, 105, 0.05);
    }

.btn-sv-outline {
    border: 2px solid var(--sv-primary);
    color: var(--sv-primary);
    background: white;
}

    .btn-sv-outline:hover {
        border-color: var(--sv-primary-dark);
        background: rgba(5, 150, 105, 0.05);
        color: var(--sv-primary-dark);
    }

.btn-sv-outline-transparent {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

    .btn-sv-outline-transparent:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

.btn-sv-secondary {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

    .btn-sv-secondary:hover {
        border-color: rgba(255, 255, 255, 0.6);
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.1);
    }

.btn-sv-full {
    width: 100%;
}
