/* ============================================================================
   thb-dashboard.css — Premium dashboard shell + body styling
   Student / Host / Agency all share this stylesheet. Built on the same
   --thb-* tokens as the public site (thb-polish.css / thb-home.css) so a
   logged-in dashboard visually belongs to the same product, not a bolt-on
   theme. Moved out of Dashboard.cshtml's old inline <style> block.
   ============================================================================ */

:root {
    /* Role accent tokens — subtle per-role identity, same layout for all three */
    --thb-role-student: var(--thb-purple, #6C5CE7);
    --thb-role-student-l: var(--thb-purple-l, #EDEBFF);
    --thb-role-host: var(--thb-green, #2FA66A);
    --thb-role-host-l: var(--thb-green-l, #E6F9EF);
    --thb-role-agency: var(--thb-orange, #F47B20);
    --thb-role-agency-l: var(--thb-orange-l, #FFF0E3);
}

/* ── Premium dashboard shell (header/hero + sidebar nav) ── */
.thb-dash-shell-hero {
    position: relative;
    padding: 44px 0 40px;
    background: linear-gradient(120deg, var(--thb-navy, #0b1633) 0%, var(--thb-navy-d, #060c1e) 100%);
    overflow: hidden;
}
.thb-dash-shell-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(600px 260px at 85% 0%, rgba(255,255,255,.10), transparent 60%);
    pointer-events: none;
}
.thb-dash-shell-hero.role-student { background: linear-gradient(120deg, var(--thb-navy, #0b1633) 0%, #241c5e 100%); }
.thb-dash-shell-hero.role-host    { background: linear-gradient(120deg, var(--thb-navy, #0b1633) 0%, #0f3d2a 100%); }
.thb-dash-shell-hero.role-agency  { background: linear-gradient(120deg, var(--thb-navy, #0b1633) 0%, #4a2a0e 100%); }

.thb-dash-identity { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.thb-dash-avatar-wrap { position: relative; flex-shrink: 0; }
.thb-dash-avatar {
    width: 76px; height: 76px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255,.85);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.thb-dash-avatar-upload {
    position: absolute; right: -2px; bottom: -2px;
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; color: var(--thb-navy, #0b1633);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,.25);
    border: none;
}
.thb-dash-name { color: #fff; font-family: var(--thb-font-h, inherit); font-weight: 800; font-size: 1.35rem; margin: 0; }
.thb-dash-meta { color: rgba(255,255,255,.72); font-size: .86rem; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.thb-dash-meta i { margin-right: 4px; }

.thb-dash-role-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 999px; font-size: .72rem; font-weight: 700;
    letter-spacing: .03em; text-transform: uppercase;
}
.thb-dash-role-badge.badge-approved   { background: rgba(47,166,106,.18); color: #a9f0c9; border: 1px solid rgba(47,166,106,.4); }
.thb-dash-role-badge.badge-pending    { background: rgba(244,123,32,.18); color: #ffcfa0; border: 1px solid rgba(244,123,32,.4); }
.thb-dash-role-badge.badge-signup     { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.thb-dash-role-badge.badge-rejected   { background: rgba(220,53,69,.18); color: #ffb3ba; border: 1px solid rgba(220,53,69,.4); }

/* ── Sidebar navigation (replaces old accordion-in-collapse pattern) ── */
.thb-dash-nav-toggle {
    display: none; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--thb-line, #e5e7eb); border-radius: 12px;
    padding: 10px 16px; font-weight: 700; color: var(--thb-navy, #0b1633);
    box-shadow: 0 4px 14px rgba(15,23,42,.06); cursor: pointer; width: 100%;
}
.thb-dash-sidebar {
    background: #fff; border-radius: 18px; padding: 14px;
    box-shadow: 0 15px 40px rgba(15,23,42,.07); border: 1px solid var(--thb-line, #edf1f5);
    position: sticky; top: 90px;
}
.thb-dash-nav-group + .thb-dash-nav-group { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--thb-line, #f0f2f5); }
.thb-dash-nav-title {
    font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800;
    color: #94a3b8; padding: 4px 10px 8px;
}
.thb-dash-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 10px; color: #334155; font-size: .88rem; font-weight: 600;
    text-decoration: none !important; transition: background .15s var(--thb-ease, ease), color .15s var(--thb-ease, ease), transform .15s var(--thb-ease, ease);
}
.thb-dash-nav-link i { width: 18px; text-align: center; color: #94a3b8; transition: color .15s ease; }
.thb-dash-nav-link:hover { background: #f5f6fa; color: var(--thb-navy, #0b1633); transform: translateX(2px); }
.thb-dash-nav-link.active { background: var(--thb-role-student-l, #EDEBFF); color: var(--thb-role-student, #6C5CE7); }
.thb-dash-nav-link.active i { color: var(--thb-role-student, #6C5CE7); }
.role-host .thb-dash-nav-link.active { background: var(--thb-role-host-l, #E6F9EF); color: var(--thb-role-host, #2FA66A); }
.role-host .thb-dash-nav-link.active i { color: var(--thb-role-host, #2FA66A); }
.role-agency .thb-dash-nav-link.active { background: var(--thb-role-agency-l, #FFF0E3); color: var(--thb-role-agency, #F47B20); }
.role-agency .thb-dash-nav-link.active i { color: var(--thb-role-agency, #F47B20); }

@media (max-width: 991px) {
    .thb-dash-nav-toggle { display: flex; }
    .thb-dash-sidebar { position: static; margin-bottom: 18px; }
}

/* ── Verification checklist card (logic unchanged, restyled) ── */
.thb-verify-card {
    background: #fff; border-radius: 18px; padding: 24px;
    box-shadow: 0 15px 40px rgba(15,23,42,.07); border: 1px solid var(--thb-line, #edf1f5);
}
.thb-verify-alert { display: flex; gap: 14px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; margin-bottom: 18px; }
.thb-verify-alert i { font-size: 20px; margin-top: 2px; }
.thb-verify-alert strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.thb-verify-alert p { margin: 0; font-size: .86rem; opacity: .9; }
.thb-verify-pending  { background: var(--thb-orange-l, #FFF0E3); color: #92400e; }
.thb-verify-pending i { color: var(--thb-orange, #F47B20); }
.thb-verify-rejected { background: #fee2e2; color: #991b1b; }
.thb-verify-rejected i { color: #dc2626; }
.thb-verify-action   { background: var(--thb-purple-l, #EDEBFF); color: #4338ca; }
.thb-verify-action i { color: var(--thb-purple, #6C5CE7); }
.thb-verify-title { font-size: .95rem; font-weight: 800; color: var(--thb-navy, #0b1633); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.thb-verify-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-bottom: 18px; }
.thb-verify-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: #94a3b8; padding: 8px 12px; border-radius: 10px; background: #f8f9fb; }
.thb-verify-item.done { color: #166534; background: var(--thb-green-l, #E6F9EF); }
.thb-verify-item .thb-verify-icon { font-size: 14px; }
.thb-verify-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--thb-purple, #6C5CE7); color: #fff; font-weight: 700;
    padding: 12px 22px; border-radius: 999px; text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(108,92,231,.28);
    transition: transform .15s var(--thb-ease, ease), box-shadow .15s var(--thb-ease, ease);
}
.thb-verify-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(108,92,231,.36); color: #fff; }
.thb-verify-cta-fix { background: #dc2626; box-shadow: 0 10px 24px rgba(220,38,38,.28); }
.thb-verify-cta-fix:hover { box-shadow: 0 14px 30px rgba(220,38,38,.36); }

/* ── Dashboard Stat/Overview Cards ── */
.dash-stat-card {
    border-radius: 14px; padding: 24px 20px; color: #fff;
    position: relative; overflow: hidden; text-decoration: none !important;
    transition: transform .2s var(--thb-ease, ease), box-shadow .2s var(--thb-ease, ease);
}
.dash-stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(15,23,42,.18); }
.dash-stat-card .card-img-absolute { position: absolute; top: -25px; right: -15px; width: 120px; opacity: 0.15; }
.dash-stat-card h2 { font-size: 2rem; font-weight: 700; }
.dash-stat-card p { font-size: 0.9rem; opacity: 0.9; }

.bg-grad-enquired { background: linear-gradient(135deg, var(--thb-navy, #0b1633), #3b5aa6); }
.bg-grad-approved { background: linear-gradient(135deg, var(--thb-green, #2FA66A), #58cf94); }
.bg-grad-pending  { background: linear-gradient(135deg, var(--thb-orange, #F47B20), #ffab5c); }
.bg-grad-rejected { background: linear-gradient(135deg, #c0392b, #e74c3c); }

/* ── Booking Timeline ── */
.booking-timeline { display: flex; justify-content: space-between; position: relative; padding: 0; margin: 30px 0 10px; list-style: none; }
.booking-timeline::before { content: ''; position: absolute; top: 15px; left: 0; right: 0; height: 3px; background: var(--thb-line, #e5e7eb); z-index: 0; }
.booking-timeline .tl-step { position: relative; text-align: center; flex: 1; z-index: 1; }
.booking-timeline .tl-dot {
    width: 32px; height: 32px; border-radius: 50%; background: #e5e7eb;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; color: #999; border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e5e7eb; transition: all .3s var(--thb-ease, ease);
}
.booking-timeline .tl-step.active .tl-dot { background: var(--thb-green, #2FA66A); color: #fff; box-shadow: 0 0 0 2px var(--thb-green, #2FA66A); }
.booking-timeline .tl-step.current .tl-dot { background: var(--thb-purple, #6C5CE7); color: #fff; box-shadow: 0 0 0 2px var(--thb-purple, #6C5CE7); animation: pulse-dot 2s infinite; }
.booking-timeline .tl-label { display: block; margin-top: 8px; font-size: 0.75rem; color: #666; }
.booking-timeline .tl-step.active .tl-label { color: var(--thb-green, #2FA66A); font-weight: 600; }
.booking-timeline .tl-step.current .tl-label { color: var(--thb-purple, #6C5CE7); font-weight: 600; }

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 2px var(--thb-purple, #6C5CE7); }
    50% { box-shadow: 0 0 0 6px rgba(108,92,231,.3); }
}

/* ── Countdown ── */
.countdown-box { background: #fff; border: 1px solid var(--thb-line, #e5e7eb); border-top: 3px solid var(--thb-purple, #6366f1); border-radius: 14px; padding: 20px; text-align: center; }
.countdown-number { font-size: 2.5rem; font-weight: 800; line-height: 1; color: var(--thb-purple, #6366f1); }
.countdown-label { font-size: 0.8rem; color: #64748b; text-transform: uppercase; letter-spacing: .04em; }

/* ── Document Progress ── */
.doc-item { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.doc-item:last-child { border-bottom: none; }
.doc-icon { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; margin-right: 10px; flex-shrink: 0; }
.doc-icon.uploaded { background: var(--thb-green-l, #E6F9EF); color: var(--thb-green, #2FA66A); }
.doc-icon.missing  { background: #f8d7da; color: #c0392b; }
.doc-name { font-size: 0.85rem; }

/* ── Payment Row ── */
.payment-row { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.payment-row:last-child { border-bottom: none; }
.payment-amount { font-weight: 700; color: var(--thb-green, #2FA66A); }

/* ── Section Cards ── */
.dash-section { background: #fff; border-radius: 16px; padding: 22px; box-shadow: 0 8px 24px rgba(15,23,42,.06); margin-bottom: 20px; border: 1px solid var(--thb-line, #f0f2f5); }
.dash-section-title { font-size: 1rem; font-weight: 700; color: var(--thb-navy, #0b1633); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; }
.dash-section-title i { margin-right: 8px; color: var(--thb-purple, #6C5CE7); }

/* ── Quick Links ── */
.quick-link { display: flex; align-items: center; padding: 12px 15px; border-radius: 10px; background: #f8f9fa; margin-bottom: 8px; text-decoration: none; color: var(--thb-navy, #0b1633); transition: all .2s var(--thb-ease, ease); }
.quick-link:hover { background: var(--thb-purple-l, #EDEBFF); color: var(--thb-purple, #6C5CE7); transform: translateX(4px); }
.quick-link i { font-size: 1.2rem; margin-right: 12px; width: 20px; text-align: center; }
.quick-link .ql-count { margin-left: auto; background: var(--thb-purple, #6C5CE7); color: #fff; padding: 2px 10px; border-radius: 12px; font-size: 0.8rem; font-weight: 600; }

/* ── Hero card (welcome banner) ── */
.thb-user-hero {
    border-radius: 20px; padding: 28px; margin-bottom: 22px; color: #fff;
    background: linear-gradient(135deg, var(--thb-navy, #0b1633), #2f5d65 58%, var(--thb-orange, #c58254));
    box-shadow: 0 22px 54px rgba(11,22,51,.22); position: relative; overflow: hidden;
}
.thb-user-hero.role-student { background: linear-gradient(135deg, var(--thb-navy, #0b1633), var(--thb-role-student, #6C5CE7) 120%); }
.thb-user-hero.role-host    { background: linear-gradient(135deg, var(--thb-navy, #0b1633), var(--thb-role-host, #2FA66A) 120%); }
.thb-user-hero.role-agency  { background: linear-gradient(135deg, var(--thb-navy, #0b1633), var(--thb-role-agency, #F47B20) 120%); }
.thb-user-hero:after { content: ""; position: absolute; right: -50px; bottom: -55px; width: 170px; height: 170px; border-radius: 50%; background: rgba(255,255,255,.13); }
.thb-user-hero h3 { position: relative; font-size: 1.55rem; font-weight: 800; margin-bottom: 6px; color: #fff; }
.thb-user-hero p { position: relative; max-width: 760px; margin-bottom: 16px; color: rgba(255,255,255,.86); }
.thb-user-actions { position: relative; display: flex; flex-wrap: wrap; gap: 10px; }
.thb-user-actions a {
    display: inline-flex; align-items: center; gap: 8px; min-height: 42px;
    padding: 10px 16px; border-radius: 999px; background: #fff; color: var(--thb-navy, #172033);
    font-weight: 700; text-decoration: none; transition: transform .15s var(--thb-ease, ease);
}
.thb-user-actions a:hover { transform: translateY(-2px); }
.thb-user-actions a.secondary { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.32); }

.thb-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 20px; }
.thb-overview-card { background: #fff; border-radius: 16px; padding: 18px; min-height: 150px; box-shadow: 0 15px 34px rgba(15,23,42,.08); border: 1px solid var(--thb-line, #edf1f5); transition: transform .15s var(--thb-ease, ease), box-shadow .15s var(--thb-ease, ease); }
.thb-overview-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(15,23,42,.12); }
.thb-overview-card i { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--thb-orange-l, #fff4e8); color: var(--thb-orange, #b56f44); margin-bottom: 12px; }
.thb-overview-card h6 { font-weight: 800; color: var(--thb-navy, #172033); }
.thb-overview-card p { color: #64748b; font-size: .9rem; margin-bottom: 0; }

/* ── Account-status tiles ── */
.thb-status-card .card-body > .row.g-2 > [class*="col-"] > .rounded {
    min-height: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid var(--thb-line, rgba(15,23,42,.05));
    transition: transform .15s var(--thb-ease, ease), box-shadow .15s var(--thb-ease, ease);
}
.thb-status-card .card-body > .row.g-2 > [class*="col-"] > .rounded:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,23,42,.10); }
.thb-status-card .small.text-muted { text-transform: uppercase; letter-spacing: .04em; font-size: .66rem; font-weight: 700; color: #94a3b8 !important; }
.thb-status-card .badge { font-size: .74rem; padding: .42em .72em; font-weight: 600; }

@media (max-width: 767px) {
    .thb-user-hero { padding: 18px; }
    .thb-user-hero h3 { font-size: 1.28rem; }
    .thb-user-actions a { width: 100%; justify-content: center; }
    .thb-overview-grid { grid-template-columns: 1fr; }
    .booking-timeline { overflow-x: auto; padding-bottom: 8px; }
    .booking-timeline .tl-step { min-width: 82px; }
    .thb-ql-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Metric Cards ── */
.thb-metric-card { background: #fff; border-radius: 14px; padding: 18px 16px; border: 1px solid var(--thb-line, #edf1f5); box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform .2s var(--thb-ease, ease), box-shadow .2s var(--thb-ease, ease); position: relative; overflow: hidden; }
.thb-metric-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.thb-metric-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.thb-mc-blue::before   { background: var(--thb-purple, #6C5CE7); }
.thb-mc-green::before  { background: var(--thb-green, #2FA66A); }
.thb-mc-amber::before  { background: var(--thb-orange, #F47B20); }
.thb-mc-red::before    { background: #ef4444; }
.thb-mc-icon { font-size: 1.1rem; margin-bottom: 10px; display: block; }
.thb-mc-blue .thb-mc-icon  { color: var(--thb-purple, #6C5CE7); }
.thb-mc-green .thb-mc-icon { color: var(--thb-green, #2FA66A); }
.thb-mc-amber .thb-mc-icon { color: var(--thb-orange, #F47B20); }
.thb-mc-red .thb-mc-icon   { color: #ef4444; }
.thb-mc-num { font-size: 2rem; font-weight: 700; color: var(--thb-navy, #172033); line-height: 1.1; }
.thb-mc-label { font-size: 0.82rem; color: #64748b; margin-top: 4px; }

/* ── Quick Link Grid ── */
.thb-ql-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.thb-ql-item { background: #f8f9fa; border-radius: 12px; padding: 14px 8px; text-align: center; text-decoration: none !important; color: var(--thb-navy, #2c3e50); transition: all .2s var(--thb-ease, ease); border: 1px solid var(--thb-line, #edf1f5); position: relative; display: block; }
.thb-ql-item:hover { background: var(--thb-purple-l, #EDEBFF); transform: translateY(-2px); border-color: var(--thb-purple, #bdd8f5); }
.thb-ql-item i { font-size: 1.4rem; display: block; margin-bottom: 4px; color: var(--thb-purple, #6C5CE7); }
.thb-ql-label { font-size: 0.72rem; color: #64748b; display: block; }
.thb-ql-badge { position: absolute; top: 6px; right: 6px; background: #ef4444; color: #fff; border-radius: 10px; padding: 1px 5px; font-size: 0.62rem; font-weight: 700; line-height: 1.5; }

/* ── Step Checklist ── */
.thb-step-list { display: flex; flex-direction: column; gap: 6px; }
.thb-step-row { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--thb-line, #edf1f5); transition: border-color .15s var(--thb-ease, ease); }
.thb-step-row:hover { border-color: var(--thb-purple, #bdd8f5); }
.thb-step-num { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.thb-step-open { background: var(--thb-orange-l, #fff8e1); color: #b45309; border: 1.5px solid var(--thb-orange, #fbbf24); }
.thb-step-done { background: var(--thb-green-l, #d4edda); color: #155724; border: 1.5px solid var(--thb-green, #86efac); }
.thb-step-text { flex: 1; font-size: 0.82rem; color: #374151; }
.thb-step-cta { font-size: 0.78rem; font-weight: 600; color: var(--thb-purple, #2563eb); white-space: nowrap; text-decoration: none !important; }
.thb-step-cta:hover { color: var(--thb-purple-d, #1d4ed8); }

/* ── Status Tiles ── */
.thb-status-tile { background: #fff; border: 1px solid var(--thb-line, #edf1f5); border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; transition: transform .15s var(--thb-ease, ease), box-shadow .15s var(--thb-ease, ease); }
.thb-status-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15,23,42,.08); }
.thb-st-icon { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.thb-st-ok     { background: var(--thb-green-l, #d4edda); color: #155724; }
.thb-st-warn   { background: var(--thb-orange-l, #fff3cd); color: #92400e; }
.thb-st-info   { background: var(--thb-purple-l, #cce5ff); color: #004085; }
.thb-st-grey   { background: #e2e8f0; color: #475569; }
.thb-st-danger { background: #f8d7da; color: #721c24; }
.thb-st-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .05em; color: #94a3b8; font-weight: 700; line-height: 1.2; }
.thb-st-val   { font-size: 0.82rem; font-weight: 600; color: var(--thb-navy, #172033); }

/* ── Completion Ring ── */
.thb-ring-wrap { display: flex; align-items: center; gap: 14px; padding: 4px 0 14px; }
.thb-ring-text h6 { font-size: 0.9rem; font-weight: 700; color: var(--thb-navy, #172033); margin-bottom: 2px; }
.thb-ring-text p  { font-size: 0.8rem; color: #64748b; margin: 0; }

/* ── First-run / empty state cards ── */
.thb-empty-card {
    background: #fff; border: 1.5px dashed var(--thb-line, #d9d9e6); border-radius: 16px;
    padding: 28px 20px; text-align: center;
}
.thb-empty-card i { font-size: 2rem; color: var(--thb-purple, #6C5CE7); margin-bottom: 10px; display: inline-block; }
.thb-empty-card h6 { font-weight: 800; color: var(--thb-navy, #172033); margin-bottom: 6px; }
.thb-empty-card p { color: #64748b; font-size: .88rem; margin-bottom: 16px; }
.thb-empty-card .btn { border-radius: 999px; padding: 10px 22px; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
    .dash-stat-card, .thb-overview-card, .thb-status-tile, .quick-link, .thb-ql-item, .thb-metric-card, .thb-user-actions a, .thb-dash-nav-link {
        transition: none !important;
    }
    .booking-timeline .tl-dot { animation: none !important; }
}
