/* Dashboard css */
.vv-hero-card {
            --vv-accent: #10e8c4;
            --vv-ink: #f5fbff;
            --vv-glass: rgba(7, 20, 32, 0.72);
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            padding: clamp(1.2rem, 2.3vw, 2.4rem);
            background-image:
                linear-gradient(112deg, rgba(2, 10, 19, 0.94) 14%, rgba(3, 20, 33, 0.88) 52%, rgba(4, 36, 49, 0.76) 100%),
                url("{{ asset('user_assets/images/bg.png') }}");
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 42px rgba(4, 10, 23, 0.38);
            isolation: isolate;
        }

        .vv-hero-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 78% 42%, rgba(16, 232, 196, 0.24) 0, rgba(16, 232, 196, 0.03) 44%, transparent 64%),
                repeating-linear-gradient(-25deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 70px);
            z-index: -2;
        }

        .vv-hero-kicker {
            display: inline-block;
            margin-bottom: 0.75rem;
            padding: 0.46rem 0.82rem;
            border-radius: 999px;
            border: 1px solid rgba(191, 248, 239, 0.4);
            background: rgba(255, 255, 255, 0.08);
            color: #d4fff5;
            letter-spacing: 0.11em;
            text-transform: uppercase;
            font-size: 0.72rem;
            font-weight: 700;
            font-family: "Sora", "Poppins", "Segoe UI", sans-serif;
        }

        .vv-hero-title {
            margin-bottom: 0.95rem;
            color: var(--vv-ink);
            font-size: clamp(1.95rem, 4vw, 3.65rem);
            line-height: 1.02;
            font-weight: 800;
            letter-spacing: -0.015em;
            font-family: "Sora", "Poppins", "Segoe UI", sans-serif;
        }

        .vv-hero-title span {
            color: var(--vv-accent);
        }

        .vv-hero-description {
            max-width: 720px;
            margin-bottom: 1.2rem;
            color: rgba(242, 251, 255, 0.9);
            font-size: 1rem;
            line-height: 1.75;
        }

        .vv-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 1.15rem;
        }

        .vv-badge {
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.08);
            color: #ecf8ff;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .vv-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.72rem;
            margin-bottom: 1.3rem;
        }

        .vv-btn {
            text-decoration: none;
            padding: 0.58rem 1.12rem;
            border-radius: 999px;
            border: 2px solid transparent;
            font-size: 0.86rem;
            font-weight: 700;
            line-height: 1;
            transition: all 0.2s ease;
            font-family: "Sora", "Poppins", "Segoe UI", sans-serif;
        }

        .vv-btn-primary {
            color: #042118;
            background: var(--vv-accent);
            border-color: var(--vv-accent);
            box-shadow: 0 10px 22px rgba(16, 232, 196, 0.26);
        }

        .vv-btn-primary:hover {
            color: #031f16;
            transform: translateY(-1px);
            box-shadow: 0 14px 26px rgba(16, 232, 196, 0.36);
        }

        .vv-btn-outline {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.65);
            background: rgba(255, 255, 255, 0.05);
        }

        .vv-btn-outline:hover {
            color: #ffffff;
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.12);
        }

        .vv-hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.72rem;
        }

        .vv-hero-metric {
            border-radius: 14px;
            padding: 0.75rem 0.82rem;
            background: rgba(7, 20, 32, 0.6);
            border: 1px solid rgba(170, 223, 215, 0.2);
            color: #d9edf6;
            min-height: 90px;
        }

        .vv-hero-metric strong {
            display: block;
            margin-bottom: 0.18rem;
            color: #ffffff;
            font-size: 1.02rem;
            font-weight: 700;
        }

        .vv-side-panel {
            position: relative;
            border-radius: 20px;
            height: 100%;
            padding: 1rem;
            background: var(--vv-glass);
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(10px);
        }

        .vv-brand-stage {
            position: relative;
            min-height: 238px;
            display: grid;
            place-items: center;
        }

        .vv-brand-ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(16, 232, 196, 0.36);
            animation: vvFloat 5.4s ease-in-out infinite;
        }

        .vv-brand-ring.ring-one {
            width: 194px;
            height: 194px;
        }

        .vv-brand-ring.ring-two {
            width: 252px;
            height: 252px;
            border-style: dashed;
            border-color: rgba(16, 232, 196, 0.24);
            animation-duration: 7.2s;
        }

        .vv-brand-logo-wrap {
            width: 132px;
            height: 132px;
            border-radius: 50%;
            border: 2px solid rgba(16, 232, 196, 0.44);
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.05) 42%, rgba(0, 0, 0, 0.14) 80%);
            box-shadow: 0 0 0 10px rgba(16, 232, 196, 0.12), 0 16px 30px rgba(4, 10, 21, 0.46);
            display: grid;
            place-items: center;
            animation: vvFadeUp 0.7s ease both;
        }

        .vv-brand-logo-wrap img {
            width: 76%;
            object-fit: contain;
            filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.35));
        }

        .vv-panel-stats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.6rem;
            margin-top: 0.35rem;
        }

        .vv-panel-stat {
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.04);
            padding: 0.62rem 0.65rem;
            color: #cee6ef;
            font-size: 0.8rem;
        }

        .vv-panel-stat strong {
            display: block;
            color: #ffffff;
            font-size: 0.98rem;
            margin-bottom: 0.06rem;
        }

        .vv-dashboard-theme {
            --vv-page-bg-start: #07121e;
            --vv-page-bg-mid: #0a1f33;
            --vv-page-bg-end: #071827;
            --vv-card-bg: linear-gradient(135deg, rgba(7, 20, 35, 0.95) 0%, rgba(9, 34, 52, 0.9) 100%);
            --vv-card-border: rgba(105, 167, 194, 0.24);
            --vv-card-text: #edf8ff;
            --vv-card-muted: #bbd0e0;
            --vv-card-accent: #10e8c4;
            position: relative;
            min-height: 100vh;
            background:
                radial-gradient(circle at 82% 0%, rgba(16, 232, 196, 0.12) 0, rgba(16, 232, 196, 0) 38%),
                linear-gradient(180deg, var(--vv-page-bg-start) 0%, var(--vv-page-bg-mid) 55%, var(--vv-page-bg-end) 100%);
        }

        .vv-dashboard-theme::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: repeating-linear-gradient(-26deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 72px);
            opacity: 0.5;
        }

        .vv-dashboard-theme .container-fluid {
            position: relative;
            z-index: 1;
        }

        .vv-dashboard-theme .card:not(.vv-hero-card),
        .vv-dashboard-theme .widget-stat.card {
            background: var(--vv-card-bg) !important;
            border: 1px solid var(--vv-card-border) !important;
            border-radius: 16px !important;
            box-shadow: 0 12px 24px rgba(3, 10, 20, 0.28);
        }

        .vv-dashboard-theme .card:not(.vv-hero-card) .card-body,
        .vv-dashboard-theme .card:not(.vv-hero-card) .card-title,
        .vv-dashboard-theme .card:not(.vv-hero-card) h1,
        .vv-dashboard-theme .card:not(.vv-hero-card) h2,
        .vv-dashboard-theme .card:not(.vv-hero-card) h3,
        .vv-dashboard-theme .card:not(.vv-hero-card) h4,
        .vv-dashboard-theme .card:not(.vv-hero-card) h5,
        .vv-dashboard-theme .card:not(.vv-hero-card) h6 {
            color: var(--vv-card-text) !important;
        }

        .vv-dashboard-theme .card:not(.vv-hero-card) p,
        .vv-dashboard-theme .card:not(.vv-hero-card) span,
        .vv-dashboard-theme .card:not(.vv-hero-card) small {
            color: var(--vv-card-muted);
        }

        .vv-dashboard-theme .card:not(.vv-hero-card) .text-primary,
        .vv-dashboard-theme .card:not(.vv-hero-card) .text-success,
        .vv-dashboard-theme .card:not(.vv-hero-card) .text-danger,
        .vv-dashboard-theme .card:not(.vv-hero-card) .text-purple,
        .vv-dashboard-theme .card:not(.vv-hero-card) .count {
            color: var(--vv-card-accent) !important;
        }

        .vv-dashboard-theme .icon-box {
            background: rgba(16, 232, 196, 0.13) !important;
            border: 1px solid rgba(16, 232, 196, 0.36);
            color: #86ffee;
        }

        .vv-dashboard-theme .icon-box svg path {
            stroke: currentColor !important;
        }

        .vv-dashboard-theme .widget-stat .media i {
            color: var(--vv-card-accent);
            font-size: 1.5rem;
        }

        .vv-dashboard-theme .progress {
            background: rgba(255, 255, 255, 0.1) !important;
            border-radius: 999px;
            height: 6px;
        }

        .vv-dashboard-theme .progress-bar {
            border-radius: 999px;
            background: linear-gradient(90deg, #12e7c4, #37ffe3) !important;
            box-shadow: 0 0 14px rgba(16, 232, 196, 0.35);
        }

        .vv-dashboard-theme .analytics-card,
        .vv-dashboard-theme .ov-card {
            background: linear-gradient(135deg, rgba(7, 18, 33, 0.98), rgba(7, 36, 57, 0.93)) !important;
            border: 1px solid rgba(140, 206, 228, 0.24) !important;
        }

        .vv-dashboard-theme .card-title.mt-1.ps-3 {
            font-size: inherit !important;
        }

        .vv-dashboard-theme .card-title.mt-1.ps-3 h3 {
            margin: 0;
            font-size: 1.35rem;
            font-weight: 700;
            color: #eaf8ff;
        }

        .vv-dashboard-theme .card-title.mt-1.ps-3 h3 b {
            text-decoration: none !important;
            color: var(--vv-card-accent);
            font-weight: 800;
        }

        .vv-dashboard-theme .alert.alert-danger {
            color: #ddfff8;
            background: linear-gradient(120deg, rgba(9, 27, 41, 0.94), rgba(10, 44, 62, 0.88)) !important;
            border: 1px solid rgba(91, 192, 179, 0.35);
            border-radius: 14px;
        }

        .vv-dashboard-theme .alert.alert-danger #code,
        .vv-dashboard-theme .alert.alert-danger #copyButtonId,
        .vv-dashboard-theme .alert.alert-danger #msgText {
            color: #7cffe9 !important;
            font-weight: 700;
        }

        .vv-dashboard-theme .alert.alert-success {
            color: #d8fff6;
            background: linear-gradient(120deg, rgba(10, 42, 40, 0.9), rgba(6, 23, 35, 0.9));
            border: 1px solid rgba(97, 211, 191, 0.45);
            border-radius: 12px;
        }

        .vv-dashboard-theme .btn-close {
            filter: invert(1);
            opacity: 0.85;
        }

        @keyframes vvFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-7px); }
        }

        @keyframes vvFadeUp {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 1199px) {
            .vv-hero-metrics {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .vv-side-panel {
                margin-top: 0.5rem;
            }
        }

        @media (max-width: 767px) {
            .vv-hero-card {
                border-radius: 18px;
            }

            .vv-hero-description {
                font-size: 0.95rem;
                line-height: 1.62;
            }

            .vv-hero-metrics,
            .vv-panel-stats {
                grid-template-columns: 1fr;
            }

            .vv-brand-stage {
                min-height: 210px;
            }
        }

        /* User Profile css */ 

          .vv-summary-page .vv-profile-field .form-control {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(173, 227, 246, 0.28);
            color: #ecf9ff;
            min-height: 44px;
        }

        .vv-summary-page .vv-profile-field .form-control:focus {
            border-color: rgba(16, 232, 196, 0.65);
            box-shadow: 0 0 0 0.18rem rgba(16, 232, 196, 0.18);
        }

        .vv-summary-page .vv-profile-field .form-control::placeholder {
            color: rgba(226, 244, 253, 0.62);
        }

        .vv-summary-page .vv-profile-field input[type='date']::-webkit-calendar-picker-indicator {
            filter: invert(1) brightness(1.2);
            opacity: 0.85;
        }

        .vv-summary-page .vv-profile-field .form-label {
            color: #d7eeff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .vv-summary-page .vv-profile-actions {
            display: flex;
            justify-content: center;
            margin-top: 0.35rem;
        }
         /* Button Styling */
        .vv-summary-page .vv-btn {
            padding: 0.75rem 1.75rem;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            border-radius: 10px;
            border: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none !important;
            margin: 0;
            position: relative;
            z-index: 1;
            line-height: 1.5;
        }

        .vv-summary-page .vv-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transition: left 0.3s ease;
            z-index: 0;
            pointer-events: none;
        }

        .vv-summary-page .vv-btn span,
        .vv-summary-page .vv-btn-primary {
            position: relative;
            z-index: 2;
        }

        .vv-summary-page .vv-btn-primary {
            color: #ffffff !important;
            background: var(--vv-accent) !important;
            border-color: var(--vv-accent) !important;
            box-shadow: 0 10px 22px rgba(16, 232, 196, 0.26);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            margin-bottom: 10px;
            align-items: center
        }

        .vv-summary-page .vv-btn-primary:hover {
            color: #ffffff !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(16, 232, 196, 0.4),
                0 0 20px rgba(16, 232, 196, 0.3);
            background: linear-gradient(135deg, var(--vv-accent) 0%, #0dd9b5 100%) !important;
        }

        .vv-summary-page .vv-btn-primary:hover::before {
            left: 0;
        }

        .vv-summary-page .vv-btn-primary:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 5px 15px rgba(16, 232, 196, 0.2);
        }

        .vv-summary-page .vv-btn-primary:focus {
            outline: none;
            box-shadow: 
                0 20px 40px rgba(16, 232, 196, 0.4),
                0 0 0 4px rgba(16, 232, 196, 0.1);
        }

        .vv-summary-page .vv-profile-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        @media (max-width: 576px) {
            .vv-summary-page .vv-profile-actions {
                flex-direction: column;
                width: 100%;
            }

            .vv-summary-page .vv-btn {
                width: 100%;
                padding: 0.75rem 1rem;
                font-size: 0.9rem !important;
            }

            .vv-summary-page .vv-btn-primary:hover {
                transform: translateY(-2px) scale(1.01);
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .vv-summary-page .vv-btn-primary:active {
                transform: scale(0.96);
            }
        }

        /* Security css */

        .vv-security-page .vv-security-card .card-header {
            border-bottom: 1px solid rgba(150, 211, 233, 0.24);
            background: transparent;
            padding: 1rem 1.25rem;
        }

        .vv-security-page .vv-security-card .title,
        .vv-security-page .vv-security-card .card-title {
            color: #ecf9ff;
            margin: 0;
            font-weight: 700;
        }

        .vv-security-page .vv-security-form .form-label {
            color: #d5ecfa;
            font-weight: 600;
            margin-bottom: 0.45rem;
        }

        .vv-security-page .vv-security-form .form-control {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(160, 221, 243, 0.3);
            color: #eefaff;
            min-height: 44px;
        }

        .vv-security-page .vv-security-form .form-control:focus {
            border-color: rgba(16, 232, 196, 0.65);
            box-shadow: 0 0 0 0.18rem rgba(16, 232, 196, 0.18);
        }

        .vv-security-page .vv-security-form .form-control::placeholder {
            color: rgba(227, 244, 252, 0.6);
        }

        .vv-security-page .vv-security-form .text-danger {
            display: inline-block;
            margin-top: 0.35rem;
            font-size: 0.84rem;
        }

        .vv-security-page .vv-form-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 0.35rem;
        }

        .vv-security-page .vv-btn {
            padding: 0.75rem 1.5rem;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(0.85rem, 2vw, 0.95rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .vv-security-page .vv-btn-primary {
            color: #042118 !important;
            background: var(--vv-accent) !important;
            border: 2px solid var(--vv-accent) !important;
            box-shadow: 0 10px 22px rgba(16, 232, 196, 0.26);
        }

        .vv-security-page .vv-btn-primary:hover {
            color: #031f16 !important;
            transform: translateY(-2px);
            box-shadow: 0 14px 26px rgba(16, 232, 196, 0.36);
            background: rgba(16, 232, 196, 1.02) !important;
        }

        .vv-security-page .vv-btn-primary:active {
            transform: translateY(0);
        }

        .vv-security-page .vv-btn-outline {
            color: #fff !important;
            background: transparent !important;
            border: 2px solid rgba(255, 255, 255, 0.65) !important;
        }

        .vv-security-page .vv-btn-outline:hover {
            color: #fff !important;
            border-color: #fff !important;
            background: rgba(255, 255, 255, 0.12) !important;
        }

        @media (max-width: 576px) {
            .vv-security-page .vv-form-actions {
                width: 100%;
            }

            .vv-security-page .vv-btn {
                width: 100%;
                padding: 0.65rem 1rem;
            }
        }

        /* Import css for member account activation page */

         .vv-import-history-page .vv-history-table thead th {
            color: #d9f3ff;
            border-color: rgba(148, 212, 235, 0.2);
            font-weight: 700;
            white-space: nowrap;
        }

        .vv-import-history-page .vv-history-table tbody td {
            color: #e9f7ff;
            border-color: rgba(148, 212, 235, 0.14);
            vertical-align: middle;
            white-space: nowrap;
        }

        .vv-import-history-page .vv-history-table tbody tr:hover {
            background: rgba(16, 232, 196, 0.06);
        }

        .vv-import-history-page .badge {
            border-radius: 999px;
            padding: 0.4rem 0.62rem;
            font-weight: 700;
        }

        .vv-import-history-page .badge.badge-primary {
            background: rgba(40, 174, 255, 0.22);
            color: #a9e2ff;
            border: 1px solid rgba(88, 195, 255, 0.35);
        }

        .vv-import-history-page .badge.badge-success {
            background: rgba(18, 201, 166, 0.18);
            color: #9fffe7;
            border: 1px solid rgba(18, 201, 166, 0.34);
        }

        .vv-import-history-page .badge.badge-danger {
            background: rgba(255, 99, 132, 0.18);
            color: #ffc6d3;
            border: 1px solid rgba(255, 99, 132, 0.34);
        }

          .vv-account-activation-page .vv-activation-success h3 {
            color: #9fffe7 !important;
            font-weight: 700;
            margin-bottom: 0.7rem;
        }

        .vv-account-activation-page .vv-activation-success p {
            color: #d2edf8;
            margin-bottom: 0;
            line-height: 1.75;
        }

        .vv-account-activation-page .vv-readonly {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #eaffff !important;
        }

        .vv-account-activation-page .vv-loader-note {
            color: #ffd4de !important;
            font-style: italic;
        }

          .vv-package-details-page .vv-package-table thead th {
            color: #d8f2ff;
            border-color: rgba(148, 212, 235, 0.2);
            font-weight: 700;
            white-space: nowrap;
        }

        .vv-package-details-page .vv-package-table tbody td {
            color: #e9f7ff;
            border-color: rgba(148, 212, 235, 0.14);
            vertical-align: middle;
            white-space: nowrap;
        }

        .vv-package-details-page .vv-package-table tbody tr:hover {
            background: rgba(16, 232, 196, 0.06);
        }

        .vv-package-details-page .badge {
            border-radius: 999px;
            padding: 0.4rem 0.62rem;
            font-weight: 700;
        }

        .vv-package-details-page .badge.badge-success {
            background: rgba(18, 201, 166, 0.18);
            color: #9fffe7;
            border: 1px solid rgba(18, 201, 166, 0.34);
        }

        .vv-package-details-page .badge.badge-danger {
            background: rgba(255, 99, 132, 0.18);
            color: #ffc6d3;
            border: 1px solid rgba(255, 99, 132, 0.34);
        }

            .vv-member-activation-page #messageU {
            display: inline-block;
            margin-top: 0.4rem;
            color: #99ffe8;
            font-weight: 600;
            min-height: 20px;
        }

        .vv-member-activation-page .vv-readonly {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #eaffff !important;
        }

        .vv-member-activation-page .vv-currency-symbol {
            text-align: center;
            font-weight: 700;
        }

        /* P2P Section css */

          .vv-activation-wallet-page #memMsg {
            display: inline-block;
            margin-top: 0.45rem;
            color: #9dffe9;
            font-weight: 600;
            min-height: 20px;
        }

        .vv-activation-wallet-page .vv-wallet-balance {
            color: #b9f5ff;
            font-size: 1.85rem;
            font-weight: 800;
            margin-bottom: 0.35rem;
        }

        .vv-activation-wallet-page .vv-wallet-label {
            color: #d2ebf7;
            font-weight: 600;
            margin-bottom: 0;
        }

        .vv-activation-wallet-page .vv-wallet-icon {
            width: 84px;
            height: 84px;
            object-fit: contain;
            margin-bottom: 0.8rem;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
        }

         .vv-p2p-history-page .vv-history-table thead th {
            color: #d8f2ff;
            border-color: rgba(148, 212, 235, 0.2);
            font-weight: 700;
            white-space: nowrap;
        }

        .vv-p2p-history-page .vv-history-table tbody td {
            color: #e9f7ff;
            border-color: rgba(148, 212, 235, 0.14);
            vertical-align: middle;
            white-space: nowrap;
        }

        .vv-p2p-history-page .vv-history-table tbody tr:hover {
            background: rgba(16, 232, 196, 0.06);
        }

        /* Login and Register css */

         .vv-auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 1.2rem 0;
        }

        .vv-auth-page .vv-auth-shell {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .vv-auth-page .vv-auth-login-card {
            border-radius: 18px;
            border: 1px solid rgba(152, 218, 242, 0.24);
            background: linear-gradient(135deg, rgba(7, 22, 37, 0.94), rgba(8, 32, 49, 0.9));
            box-shadow: 0 18px 36px rgba(3, 10, 20, 0.36);
        }

        .vv-auth-page .vv-auth-logo {
            width: 132px;
            height: auto;
            margin-bottom: 0.75rem;
        }

        .vv-auth-page .vv-auth-title {
            color: #eff9ff;
            font-size: 1.45rem;
            font-weight: 800;
            margin-bottom: 0.35rem;
        }

        .vv-auth-page .vv-auth-subtitle {
            color: #c8dfec;
            margin-bottom: 1rem;
        }

        .vv-auth-page .vv-auth-form .form-label {
            color: #d7eefb;
            font-weight: 600;
            margin-bottom: 0.45rem;
        }

        .vv-auth-page .vv-auth-form .form-control {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(160, 221, 243, 0.32);
            color: #edf9ff;
            min-height: 44px;
        }

        .vv-auth-page .vv-auth-form .form-control::placeholder {
            color: rgba(227, 244, 252, 0.58);
        }

        .vv-auth-page .vv-auth-form .form-control:focus {
            border-color: rgba(16, 232, 196, 0.62);
            box-shadow: 0 0 0 0.18rem rgba(16, 232, 196, 0.16);
        }

        .vv-auth-page .vv-auth-actions {
            display: grid;
            gap: 0.65rem;
            margin-top: 1.1rem;
        }

        .vv-auth-page .vv-auth-note {
            color: #a5c6d6;
            font-size: 0.88rem;
            margin-bottom: 1rem;
        }

        .vv-auth-page .alert {
            border-radius: 12px;
        }

        @media (max-width: 991px) {
            .vv-auth-page {
                padding: 1rem 0;
            }

            .vv-auth-page .vv-auth-title {
                font-size: 1.3rem;
            }
        }

         /* ===== Button Styling ===== */
        .vv-auth-page .vv-btn {
            padding: 0.8rem 1.75rem !important;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(0.9rem, 2vw, 1rem) !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            border-radius: 12px;
            border: 2px solid transparent;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none !important;
            margin: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .vv-auth-page .vv-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .vv-auth-page .vv-btn-primary {
            color: #ffffff !important;
            background: linear-gradient(135deg, var(--vv-accent) 0%, #0dd9b5 100%) !important;
            border-color: var(--vv-accent) !important;
            box-shadow: 0 8px 24px rgba(16, 232, 196, 0.35);
        }

        .vv-auth-page .vv-btn-primary:hover {
            color: #ffffff !important;
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 16px 40px rgba(16, 232, 196, 0.5),
                0 0 30px rgba(16, 232, 196, 0.3);
            background: linear-gradient(135deg, #0dd9b5 0%, var(--vv-accent) 100%) !important;
            letter-spacing: 1.5px !important;
        }

        .vv-auth-page .vv-btn-primary:hover::before {
            left: 100%;
        }

        .vv-auth-page .vv-btn-primary:active {
            transform: translateY(-2px) scale(0.98);
            box-shadow: 0 8px 20px rgba(16, 232, 196, 0.3);
        }

        .vv-auth-page .vv-btn-primary:focus {
            outline: none;
            box-shadow: 
                0 16px 40px rgba(16, 232, 196, 0.5),
                0 0 0 5px rgba(16, 232, 196, 0.15);
        }

        .vv-auth-page .vv-btn-outline {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.08) !important;
            border: 2px solid rgba(255, 255, 255, 0.6) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .vv-auth-page .vv-btn-outline:hover {
            color: #ffffff !important;
            border-color: var(--vv-accent) !important;
            background: rgba(16, 232, 196, 0.12) !important;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 12px 32px rgba(16, 232, 196, 0.25),
                0 0 20px rgba(16, 232, 196, 0.15);
        }

        .vv-auth-page .vv-btn-outline:hover::before {
            left: 100%;
        }

        .vv-auth-page .vv-btn-outline:active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 6px 16px rgba(16, 232, 196, 0.15);
        }

        .vv-auth-page .vv-auth-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.75rem;
        }

        .vv-auth-page .vv-btn.w-100 {
            width: 100% !important;
        }

        .vv-auth-page .vv-btn.text-center {
            text-align: center;
        }

        @media (max-width: 576px) {
            .vv-auth-page .vv-btn {
                padding: 0.75rem 1rem !important;
                font-size: 0.9rem !important;
                min-height: 44px;
            }

            .vv-auth-page .vv-btn-primary:hover {
                transform: translateY(-2px) scale(1.01);
            }

            .vv-auth-page .vv-btn-outline:hover {
                transform: translateY(-2px) scale(1.01);
            }
        }

        @media (hover: none) and (pointer: coarse) {
            .vv-auth-page .vv-btn-primary:active {
                transform: scale(0.95);
            }

            .vv-auth-page .vv-btn-outline:active {
                transform: scale(0.95);
            }
        }


         .vv-auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 1.2rem 0;
        }

        .vv-auth-page .vv-auth-shell {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .vv-signup-page .vv-auth-signup-card {
            border-radius: 18px;
            border: 1px solid rgba(152, 218, 242, 0.24);
            background: linear-gradient(135deg, rgba(7, 22, 37, 0.94), rgba(8, 32, 49, 0.9));
            box-shadow: 0 18px 36px rgba(3, 10, 20, 0.36);
        }

        .vv-signup-page .vv-auth-logo {
            width: 128px;
            height: auto;
            margin-bottom: 0.75rem;
        }

        .vv-signup-page .vv-auth-title {
            color: #eff9ff;
            font-size: 1.35rem;
            font-weight: 800;
            margin-bottom: 0.35rem;
        }

        .vv-signup-page .vv-auth-subtitle {
            color: #c8dfec;
            margin-bottom: 1rem;
        }

        .vv-signup-page .vv-auth-form .form-label {
            color: #d7eefb;
            font-weight: 600;
            margin-bottom: 0.45rem;
        }

        .vv-signup-page .vv-auth-form .form-control {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(160, 221, 243, 0.32);
            color: #edf9ff;
            min-height: 44px;
        }

        .vv-signup-page .vv-auth-form .form-control::placeholder {
            color: rgba(227, 244, 252, 0.58);
        }

        .vv-signup-page .vv-auth-form .form-control:focus {
            border-color: rgba(16, 232, 196, 0.62);
            box-shadow: 0 0 0 0.18rem rgba(16, 232, 196, 0.16);
        }

        .vv-signup-page .vv-auth-form select.form-control option {
            color: #0b1e2f;
        }

        .vv-signup-page #sponhtml,
        .vv-signup-page #userhtml {
            display: inline-block;
            margin-top: 0.35rem;
            color: #9dffe9;
            font-weight: 600;
            min-height: 18px;
        }

        .vv-signup-page .vv-auth-actions {
            display: grid;
            gap: 0.65rem;
            margin-top: 1.1rem;
        }

        .vv-signup-page .alert {
            border-radius: 12px;
        }

        @media (max-width: 991px) {
            .vv-auth-page {
                padding: 1rem 0;
            }
        }

        /* Simple button override */
        .vv-btn,
        .vv-security-page .vv-btn,
        .vv-summary-page .vv-btn,
        .vv-auth-page .vv-btn,
        .vv-dashboard-theme .btn {
            border-radius: 8px !important;
            text-transform: none !important;
            letter-spacing: normal !important;
            transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
            transform: none !important;
            box-shadow: none !important;
        }

        .vv-btn::before,
        .vv-security-page .vv-btn::before,
        .vv-summary-page .vv-btn::before,
        .vv-auth-page .vv-btn::before {
            display: none !important;
            content: none !important;
        }

        .vv-btn-primary,
        .vv-security-page .vv-btn-primary,
        .vv-summary-page .vv-btn-primary,
        .vv-auth-page .vv-btn-primary {
            background: #10e8c4 !important;
            border: 1px solid #10e8c4 !important;
            color: #042118 !important;
        }

        .vv-btn-outline,
        .vv-security-page .vv-btn-outline,
        .vv-summary-page .vv-btn-outline,
        .vv-auth-page .vv-btn-outline {
            background: transparent !important;
            border: 1px solid rgba(255, 255, 255, 0.6) !important;
            color: #ffffff !important;
        }

        .vv-btn:hover,
        .vv-btn:focus,
        .vv-btn:active,
        .vv-security-page .vv-btn:hover,
        .vv-summary-page .vv-btn:hover,
        .vv-auth-page .vv-btn:hover,
        .vv-dashboard-theme .btn:hover,
        .vv-dashboard-theme .btn:focus,
        .vv-dashboard-theme .btn:active {
            transform: none !important;
            box-shadow: none !important;
        }
