/* =========================================================
   1. ROOT VARIABLES / DESIGN TOKENS
   ========================================================= */
:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-2: #fdfdfd;
    --text: #122033;
    --muted: #5f6f86;
    --line: #e7edf5;

    --primary: #2563eb;
    --primary-2: #1d4ed8;
    --primary-soft: rgba(37, 99, 235, 0.08);

    --success-bg: #f0fdf4;
    --success-text: #166534;
    --success-line: #bbf7d0;

    --danger-bg: #fef2f2;
    --danger-text: #b91c1c;
    --danger-line: #fecaca;

    --warning-bg: #fff7ed;
    --warning-text: #c2410c;
    --warning-line: #fdba74;

    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;

    --container: 1200px;

    --transition: 0.25s ease;
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Hind Siliguri", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    padding-left: 18px;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.2;
}

p {
    margin-top: 0;
}

/* =========================================================
   3. GLOBAL UTILITIES
   ========================================================= */
.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.page-shell {
    padding: 28px 0;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-space {
    padding: 56px 0;
}

.section-head {
    margin-bottom: 22px;
}

.section-head h1,
.section-head h2,
.section-head h3 {
    margin-bottom: 8px;
}

.section-head p {
    color: var(--muted);
}

.text-muted {
    color: var(--muted);
}

.text-center {
    text-align: center;
}

/* =========================================================
   4. HEADER / NAVBAR
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #38bdf8);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 700;
}

.brand-text {
    font-size: 18px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    font-size: 20px;
    color: var(--text);
    transition: var(--transition);
}

.menu-toggle:hover {
    border-color: #d8e3f1;
    box-shadow: var(--shadow-sm);
}

.main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.main-nav.is-open {
    display: flex;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
}

.nav-btn {
    padding: 11px 16px;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
}

.nav-btn-outline {
    border: 1px solid var(--line);
    background: #fff;
}

.nav-btn-outline:hover {
    border-color: #d8e3f1;
    box-shadow: var(--shadow-sm);
}

.nav-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.nav-btn-primary:hover {
    transform: translateY(-1px);
}

/* =========================================================
   5. FOOTER
   ========================================================= */
.site-footer {
    margin-top: 60px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    gap: 24px;
    padding: 36px 0 24px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-text {
    color: var(--muted);
    margin: 0;
}

.site-footer h4 {
    margin: 0 0 12px;
    font-size: 17px;
}

.site-footer a {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    padding: 14px 12px 22px;
    font-size: 14px;
}

/* =========================================================
   6. BUTTONS
   ========================================================= */
.btn-primary,
.btn-secondary,
.btn-danger,
.btn-success,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: #eef4ff;
    color: var(--primary);
    border: 1px solid #dbe7ff;
}

.btn-danger {
    background: #dc2626;
    color: #fff;
}

.btn-success {
    background: #16a34a;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
}

/* =========================================================
   7. ALERTS / FEEDBACK
   ========================================================= */
.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    border: 1px solid transparent;
}

.alert-error {
    background: var(--danger-bg);
    color: var(--danger-text);
    border-color: var(--danger-line);
}

.alert-success {
    background: var(--success-bg);
    color: var(--success-text);
    border-color: var(--success-line);
}

.alert-warning {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-color: var(--warning-line);
}

/* =========================================================
   8. AUTH PAGES
   ========================================================= */
.auth-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px;
}

.auth-card-wide {
    max-width: 760px;
}

.auth-head {
    margin-bottom: 20px;
}

.auth-head h1 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
}

.auth-head p {
    margin: 0;
    color: var(--muted);
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-submit {
    width: 100%;
    border: 0;
    height: 52px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
}

.auth-foot {
    margin-top: 18px;
    text-align: center;
    color: var(--muted);
}

.auth-foot a {
    color: var(--primary);
    font-weight: 600;
}

/* =========================================================
   9. MULTI STEP FORM
   ========================================================= */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    min-width: 0;
}

.step-item.is-active {
    color: var(--text);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    background: #eef2f7;
    color: var(--muted);
    border: 1px solid var(--line);
}

.step-item.is-active .step-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border-color: transparent;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.step-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.form-step {
    display: none;
}

.form-step.is-active {
    display: grid;
    gap: 16px;
}

/* =========================================================
   10. FORMS
   ========================================================= */
.form-grid {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}

.form-group small {
    color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 0 16px;
    outline: none;
    transition: var(--transition);
    color: var(--text);
}

.form-group input,
.form-group select {
    height: 52px;
}

.form-group textarea {
    min-height: 140px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.form-group input[type="file"] {
    height: auto;
    padding: 14px 16px;
    background: #fff;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

/* =========================================================
   11. TABLE / CRUD LIST VIEW
   ========================================================= */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.table th,
.table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.table th {
    background: #f8fbff;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.table td {
    color: #31435a;
    font-size: 15px;
}

.table tr:last-child td {
    border-bottom: 0;
}

/* =========================================================
   12. ACTION BUTTONS
   ========================================================= */
.action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.action-btn {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    box-shadow: var(--shadow-sm);
}

.action-btn-view {
    color: var(--primary);
    border-color: #dbe7ff;
    background: #eff6ff;
}

.action-btn-edit {
    color: #7c3aed;
    border-color: #e9d5ff;
    background: #faf5ff;
}

.action-btn-delete {
    color: #b91c1c;
    border-color: #fecaca;
    background: #fef2f2;
}

.action-btn-success {
    color: #166534;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.action-btn-warning {
    color: #c2410c;
    border-color: #fdba74;
    background: #fff7ed;
}

/* =========================================================
   13. DASHBOARD / INFO CARDS
   ========================================================= */
.stats-grid {
    display: grid;
    gap: 16px;
}

.info-card {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card h3,
.info-card h4 {
    margin-bottom: 8px;
}

.info-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status-pending {
    background: #fff7ed;
    color: #c2410c;
}

.status-approved,
.status-active,
.status-paid {
    background: #f0fdf4;
    color: #166534;
}

.status-rejected,
.status-suspended {
    background: #fef2f2;
    color: #b91c1c;
}

/* =========================================================
   14. EMPTY / HELP STATES
   ========================================================= */
.empty-state {
    text-align: center;
    padding: 32px 20px;
    color: var(--muted);
}

.help-text {
    color: var(--muted);
    font-size: 14px;
}

/* =========================================================
   15. RESPONSIVE - TABLET
   ========================================================= */
@media (min-width: 768px) {
    .container {
        width: min(var(--container), calc(100% - 40px));
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-label {
        font-size: 15px;
    }
}

/* =========================================================
   16. RESPONSIVE - DESKTOP
   ========================================================= */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 18px;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .main-nav a {
        transition: var(--transition);
    }

    .main-nav a:hover {
        color: var(--primary);
    }

    .footer-grid {
        grid-template-columns: 1.6fr 1fr;
        align-items: start;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .auth-card {
        padding: 32px;
    }
}



/* =========================================================
   17. REGISTER UX IMPROVEMENTS
   ========================================================= */
input::placeholder,
textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
    font-size: 14px;
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 92px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 42px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.match-indicator {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%) scale(0.8);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

.match-indicator.is-visible {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.match-indicator.is-match {
    background: #dcfce7;
    color: #166534;
}

.match-indicator.is-mismatch {
    background: #fee2e2;
    color: #b91c1c;
}

.text-success {
    color: #166534;
}

.text-danger {
    color: #b91c1c;
}

.text-warning {
    color: #c2410c;
}


/* =========================================================
   18. ADMIN AUTH PAGE
   ========================================================= */
.auth-page-shell {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}


/* =========================================================
   19. ADMIN KYC REVIEW
   ========================================================= */
.review-grid {
    display: grid;
    gap: 18px;
}

.review-list {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.kyc-image-wrap {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
}

.kyc-preview-image {
    width: 100%;
    height: auto;
    display: block;
}

.review-actions-card {
    display: grid;
    gap: 20px;
}

.review-form-block {
    display: grid;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.inline-form {
    margin-bottom: 6px;
}

@media (min-width: 1024px) {
    .review-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   20. ADMIN DASHBOARD UI
   ========================================================= */
.admin-hero {
    padding: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.admin-hero-content {
    display: grid;
    gap: 18px;
}

.admin-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.admin-subtext {
    color: var(--muted);
    margin: 8px 0 0;
}

.admin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-stats-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-stat-card {
    padding: 20px;
}

.admin-stat-label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.admin-stat-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 10px;
}

.admin-stat-note {
    color: var(--muted);
    font-size: 14px;
}

.admin-section-grid {
    display: grid;
    gap: 20px;
}

.admin-panel-card {
    padding: 24px;
}

.admin-action-grid {
    display: grid;
    gap: 14px;
}

.admin-action-item {
    display: block;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: var(--transition);
}

.admin-action-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: #dbe7ff;
}

.admin-action-title {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.admin-action-text {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.overview-list {
    display: grid;
    gap: 12px;
}

.overview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.overview-item:last-child {
    border-bottom: 0;
}

.overview-item span {
    color: var(--muted);
}

.overview-item strong {
    color: var(--text);
    font-size: 16px;
}

@media (min-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-hero-content {
        grid-template-columns: 1.5fr auto;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .admin-stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .admin-section-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}


/* =========================================================
   21. USER STATUS / NOTIFICATION FLOW
   ========================================================= */
.status-screen-card {
    padding: 28px 24px;
    text-align: center;
}

.status-screen-card h2 {
    margin-bottom: 10px;
}

.status-screen-card p {
    color: var(--muted);
    margin-bottom: 8px;
}

.mini-note-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    text-align: left;
}

.mini-note-item {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    display: grid;
    gap: 4px;
}

.mini-note-item strong {
    color: var(--text);
    font-size: 15px;
}

.mini-note-item span {
    color: var(--muted);
    font-size: 14px;
}

.dashboard-welcome-card {
    padding: 24px;
    margin-bottom: 18px;
}

.dashboard-stats-grid {
    margin-bottom: 18px;
}

.dashboard-notification-card {
    padding: 24px;
}


/* =========================================================
   22. ADMIN NAVIGATION
   ========================================================= */
.admin-site-header .brand-mark {
    background: linear-gradient(135deg, #0f172a, #2563eb);
}

.admin-nav a:hover {
    color: var(--primary);
}

.admin-footer {
    margin-top: 40px;
}


/* =========================================================
   23. ADMIN USERS FILTER
   ========================================================= */
.admin-filter-form {
    margin-top: 18px;
}

.admin-filter-form .form-row {
    display: grid;
    gap: 16px;
}

@media (min-width: 1024px) {
    .admin-filter-form .form-row {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

/* =========================================================
   24. Logo and others
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-only {
    max-width: 220px;
}

.brand-logo {
    display: block;
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-text {
    display: none;
}

@media (max-width: 991px) {
    .brand-logo-only {
        max-width: 170px;
    }

    .brand-logo {
        height: 36px;
    }
}

@media (max-width: 640px) {
    .brand-logo-only {
        max-width: 140px;
    }

    .brand-logo {
        height: 30px;
    }
}


/* =========================================================
   24. WITHDRAW PAGE UI
   ========================================================= */
.withdraw-hero {
    padding: 28px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.withdraw-hero-content {
    display: grid;
    gap: 18px;
}

.withdraw-eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.withdraw-hero-text {
    color: var(--muted);
    margin: 10px 0 0;
    max-width: 700px;
}

.withdraw-hero-balance {
    display: inline-grid;
    gap: 6px;
    align-self: start;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    min-width: 220px;
}

.withdraw-balance-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.withdraw-hero-balance strong {
    font-size: 30px;
    line-height: 1;
    color: var(--text);
}

.withdraw-summary-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.withdraw-summary-card {
    padding: 20px;
}

.withdraw-summary-label {
    display: block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.withdraw-summary-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 10px;
}

.withdraw-summary-value.small-value {
    font-size: 22px;
    text-transform: capitalize;
}

.withdraw-summary-note {
    color: var(--muted);
    font-size: 13px;
}

.withdraw-layout {
    display: grid;
    gap: 20px;
}

.withdraw-form-card {
    padding: 24px;
}

.withdraw-side-card {
    padding: 24px;
    align-self: start;
}

.withdraw-side-card h3 {
    margin-bottom: 18px;
}

.withdraw-rule-list {
    display: grid;
    gap: 14px;
}

.withdraw-rule-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.withdraw-rule-item strong {
    color: var(--text);
    font-size: 14px;
}

.withdraw-rule-item span {
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.withdraw-side-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.withdraw-state-card {
    padding: 28px 24px;
    text-align: center;
}

.withdraw-state-card h2 {
    margin-bottom: 10px;
}

.withdraw-state-card p {
    color: var(--muted);
}

@media (min-width: 768px) {
    .withdraw-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .withdraw-hero-content {
        grid-template-columns: 1.3fr auto;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .withdraw-layout {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }
}


.notification-nav{
    position: relative;
    display: inline-flex;
    align-items: center;
}

.notification-badge{
    position: absolute;
    top: 0;
    right: -6px;
    transform: translate(50%, -35%);

    width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ef4444;
    color: #fff;

    font-size: 10px;   /* smaller for better fit */
    font-weight: 700;
    line-height: 1;

    border-radius: 50%;
    padding: 0;
}

.admin-stat-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.admin-stat-card{
    cursor:pointer;
    transition:all .2s ease;
}

.admin-stat-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}