/* 
   VoltRide Lyft-Inspired Premium Style Guide v4.0
   Theme: Cyber-Light Mobile Interfaces in a Sleek Obsidian Presentation Canvas.
   Primary Accents: Volt Pink (#ff007f), Violet (#7c3aed), and Slate Charcoal.
*/

:root {
    /* Presentation Canvas (Dark Mode) */
    --bg-dark: #09090b;           /* Obsidian canvas */
    --bg-surface: #121214;        /* Dark toolbar background */
    --border-glow: #27272a;       /* Dark border elements */
    
    /* Mobile App Canvas (Light Mode) */
    --app-bg: #ffffff;            /* Pure white app background */
    --app-surface: #f4f4f5;       /* Zinc 100 card fill */
    --app-border: #e4e4e7;        /* Zinc 200 light border */
    
    /* Brand Accent Colors */
    --primary: #09090b;           /* Black for primary text & black buttons (Uber/Lyft premium style) */
    --accent: #ff007f;            /* Volt Pink (Lyft accent) */
    --secondary: #7c3aed;         /* Violet (VoltRide secondary) */
    --success: #10b981;          /* Emerald Green (Online/Confirm) */
    --danger: #ef4444;           /* Coral Red (Offline/Decline) */
    --warning: #f59e0b;          /* Warm Gold */
    
    /* Light Mode Typography */
    --text-main: #09090b;         /* Zinc 900 */
    --text-muted: #71717a;        /* Zinc 500 */
    --text-light: #ffffff;        /* White text for black buttons */
    
    /* Font Configurations */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.018em;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Presentation Header */
header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-glow);
    padding: 1.1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.brand-title h1 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-title h1 span {
    color: var(--accent);
}

.brand-title p {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.1rem;
}

.simulator-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Control Buttons */
.btn {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    border: 1px solid var(--border-glow);
    cursor: pointer;
    transition: var(--transition-fast);
    background-color: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #e60072;
    box-shadow: 0 4px 12px rgba(255, 0, 127, 0.25);
}

.btn-success:hover {
    background-color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Mobile Phone Screen Button overrides to fix white-on-white text */
.phone-screen .btn {
    color: var(--text-main) !important;
    border-color: var(--app-border) !important;
    background-color: #ffffff !important;
}

.phone-screen .btn:hover {
    background-color: var(--app-surface) !important;
    border-color: var(--text-muted) !important;
}

.phone-screen .btn-primary {
    color: var(--text-light) !important;
    background-color: var(--primary) !important;
    border: none !important;
}

.phone-screen .btn-primary:hover {
    background-color: #27272a !important;
}

.phone-screen .btn-success {
    color: var(--text-light) !important;
    background-color: var(--success) !important;
    border: none !important;
}

.phone-screen .btn-success:hover {
    background-color: #059669 !important;
}

/* Dashboard Presentation Grid */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    gap: 5rem;
    flex-wrap: wrap;
    background-image: radial-gradient(circle at top right, rgba(255, 0, 127, 0.03), transparent 45%),
                      radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.03), transparent 45%);
}

.device-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.device-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 12px;
    border: 1px solid var(--border-glow);
    background-color: rgba(255, 255, 255, 0.02);
}

.device-label .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.device-label.active {
    color: #ffffff;
    border-color: rgba(255, 0, 127, 0.25);
    background-color: rgba(255, 0, 127, 0.05);
}

.device-label.active .dot {
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

/* Smartphone Bezel (Sleek Matte Charcoal) */
.phone-bezel {
    width: 366px;
    height: 760px;
    background-color: #000000;
    border: 10px solid #18181b; /* Matte charcoal phone case */
    border-radius: 46px;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Physical Phone Indicators */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background-color: #000000;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-camera {
    width: 5.5px;
    height: 5.5px;
    border-radius: 50%;
    background-color: #101012;
    margin-left: 15px;
}

.phone-speaker {
    width: 32px;
    height: 2.5px;
    border-radius: 2px;
    background-color: #0e0e10;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: rgba(9, 9, 11, 0.2);
    border-radius: 2px;
    z-index: 999;
    pointer-events: none;
}

/* Light Mobile App Canvas */
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--app-bg);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    z-index: 10;
}

.app-view.active {
    display: flex;
}

/* Maps Integration styling (leaves space for status bar safe area) */
.map-container {
    width: 100%;
    height: calc(100% - 40px);
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1;
}

/* Hide zoom controls to prevent overlap with clock */
.leaflet-control-zoom {
    display: none !important;
}

/* Status Bar (Light Mode adapt) */
.status-bar {
    height: 40px;
    padding: 12px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 750;
    color: #09090b;
    z-index: 998;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
    pointer-events: none;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-right svg {
    width: 12px;
    height: 12px;
    fill: #09090b;
}

/* Overlays (Sleek Lyft Cards) */
.floating-overlay {
    position: absolute;
    width: 100%;
    z-index: 99;
    pointer-events: none;
}

.floating-top {
    top: 48px;
    left: 0;
    padding: 0 16px;
}

.floating-bottom {
    bottom: 16px;
    left: 0;
    padding: 0 16px;
}

.floating-overlay * {
    pointer-events: auto;
}

/* White Ambient Shadow Cards */
.card-glass {
    background-color: #ffffff;
    border: 1px solid var(--app-border);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(9, 9, 11, 0.08);
}

/* Onboarding Screen (White Background) */
.auth-screen {
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background-color: var(--app-bg);
}

.auth-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.auth-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.15);
}

.auth-logo svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.auth-title h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.auth-title p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.input-field {
    width: 100%;
    background-color: var(--app-surface);
    border: 1px solid var(--app-border);
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    font-weight: 600;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px var(--accent);
}

/* OTP verification grids */
.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.otp-box {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 10px;
    background-color: var(--app-surface);
    border: 1px solid var(--app-border);
    color: var(--text-main);
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.otp-box:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
}

/* Floating Search overlay trigger (Lyft White Pill) */
.search-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    border: 1px solid var(--app-border);
    border-radius: 25px;
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(9, 9, 11, 0.06);
    transition: var(--transition-fast);
}

.search-card:hover {
    border-color: var(--accent);
}

.search-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.search-placeholder {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Location flows styling */
.loc-flow {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    margin-bottom: 1rem;
}

.loc-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--success);
}

.dot-red {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
}

.loc-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Pricing layout */
.fare-display {
    border-top: 1px solid var(--app-border);
    padding-top: 0.85rem;
    margin-top: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fare-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fare-value {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.cash-badge {
    background-color: rgba(255, 0, 127, 0.05);
    color: var(--accent);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 0, 127, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-top: 0.2rem;
}

/* Action Buttons (Uber-style flat black/charcoal) */
#rider-bezel .btn-primary, #driver-bezel .btn-primary {
    background-color: var(--primary); /* Deep black buttons */
    color: var(--text-light);
    border: none;
    border-radius: 12px;
    font-size: 0.82rem;
    padding: 0.75rem 1.25rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(9, 9, 11, 0.15);
}

#rider-bezel .btn-primary:hover, #driver-bezel .btn-primary:hover {
    background-color: #27272a;
    box-shadow: 0 6px 15px rgba(9, 9, 11, 0.2);
    transform: none;
}

/* Dispatch loader radar */
.dispatching-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: rgba(255, 255, 255, 0.4); /* Transparent light background */
}

.radar-wrapper {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.radar-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 0, 127, 0.35);
    border-radius: 50%;
    opacity: 0;
    animation: radar-pulse 2.5s infinite linear;
}

.radar-circle:nth-child(2) { animation-delay: 0.8s; }
.radar-circle:nth-child(3) { animation-delay: 1.6s; }

.radar-center {
    position: absolute;
    width: 44px;
    height: 44px;
    background-color: var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-center svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* Dispatch request card (Driver UI) */
.request-incoming-card {
    border: 1.5px solid var(--accent);
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.1);
}

.progress-timer-bar {
    width: 100%;
    height: 3px;
    background-color: var(--app-surface);
    border-radius: 1.5px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-timer-fill {
    height: 100%;
    background-color: var(--accent);
    width: 100%;
}

/* Subscription metallic virtual membership card */
.subscription-widget {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 20px;
    padding: 1.15rem;
    margin-bottom: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.subscription-widget:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

.subscription-widget .sub-title {
    color: rgba(255, 255, 255, 0.8) !important;
}

.subscription-widget .trips-large {
    color: #ffffff;
}

.subscription-widget .trips-small {
    color: rgba(255, 255, 255, 0.8);
}

.subscription-widget .sub-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sub-badge.low {
    background-color: var(--danger);
    color: #ffffff;
    animation: blink-anim 1.5s infinite ease-in-out;
}

/* Fix ledger text contrast inside gradient background */
.subscription-widget .text-muted,
#driver-txt-sub-expiry {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

/* Status toggling */
.driver-status-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot-pulse {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 6px var(--success);
    animation: pulse-green 2.5s infinite;
}

/* Pill slide button (Volt Pink gradient style) */
.slider-btn {
    width: 100%;
    height: 52px;
    background-color: var(--app-surface);
    border: 1px solid var(--app-border);
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.slider-handle {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    cursor: grab;
    transition: left 0.1s ease-out;
    box-shadow: 0 2px 8px rgba(255, 0, 127, 0.3);
}

.slider-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: center;
    line-height: 50px;
    pointer-events: none;
}

/* User listing panels */
.driver-card, .rider-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--app-surface);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--app-border);
}

.rating-badge {
    background-color: var(--app-surface);
    color: var(--warning);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    border: 1px solid var(--app-border);
}

/* Modals overlays (Plan lists) */
.overlay-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--app-bg);
    z-index: 150;
    padding: 2.5rem 1.25rem 1.25rem 1.25rem;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.overlay-full.active {
    display: flex;
}

.plan-card {
    background-color: var(--app-surface);
    border: 1px solid var(--app-border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.plan-card:hover {
    border-color: var(--text-muted);
}

.plan-card.selected {
    border-color: var(--accent);
    background-color: rgba(255, 0, 127, 0.02);
}

.plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-main);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.plan-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Star rating selections */
.stars-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.star-icon {
    font-size: 1.85rem;
    color: var(--app-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-icon.filled {
    color: var(--warning);
}

/* Dual validation badges */
.confirm-status-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.confirm-badge {
    flex: 1;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 6px;
    background-color: var(--app-surface);
    color: var(--text-muted);
    border: 1px solid var(--app-border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.confirm-badge.done {
    background-color: rgba(16, 185, 129, 0.05);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.15);
}

/* Leaflet maps custom pins */
.custom-pin {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(9, 9, 11, 0.15);
}

.pin-pickup {
    background-color: var(--success);
}

.pin-dropoff {
    background-color: var(--accent);
}

.pin-car {
    background-color: var(--primary);
    transform: rotate(45deg);
    border-radius: 0 50% 50% 50%;
    border: 2px solid #ffffff;
}

.pin-car svg {
    transform: rotate(-45deg);
    width: 12px;
    height: 12px;
    fill: #ffffff;
}

/* Document upload forms */
.doc-upload-box {
    border: 1px dashed var(--app-border);
    border-radius: 10px;
    padding: 0.9rem;
    text-align: center;
    cursor: pointer;
    background-color: var(--app-surface);
    transition: var(--transition-fast);
    margin-bottom: 0.65rem;
}

.doc-upload-box:hover {
    border-color: var(--accent);
}

.doc-upload-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
}

.doc-status {
    font-size: 0.62rem;
    margin-top: 0.3rem;
    display: inline-block;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.doc-status.pending {
    background-color: rgba(245, 158, 11, 0.05);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.12);
}

.doc-status.approved {
    background-color: rgba(16, 185, 129, 0.05);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.12);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--app-border);
    border-radius: 2px;
}

/* Spacer & Typography Utilities */
.spacer-sm { height: 0.5rem; }
.spacer-md { height: 1rem; }
.spacer-lg { height: 2rem; }

.text-center { text-align: center; }
.bold { font-weight: 700; }
.text-xs { font-size: 0.7rem; }
.text-sm { font-size: 0.8rem; }
.text-muted { color: var(--text-muted); }
