/* SureData Data - Premium Design System */
:root {
    --bg-main: #060709;
    --bg-surface: rgba(15, 17, 23, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --accent-primary: #facc15;
    --accent-secondary: #eab308;
    --accent-rgb: 250, 204, 21;
    --accent-secondary-rgb: 234, 179, 8;
    --accent-glow: rgba(var(--accent-rgb), 0.4);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --success: #10b981;
    --error: #ef4444;
    
    --font-main: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 16px;
    --radius-md: 12px;
}

/* Light Mode Overrides */
body.light-mode {
    --bg-main: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(0, 0, 0, 0.04);
    --border-glass: rgba(0, 0, 0, 0.1);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --accent-glow: rgba(var(--accent-rgb), 0.2);
}

body.light-mode .mobile-header,
body.light-mode .mobile-header *,
body.light-mode .sidebar-link.active span,
body.light-mode .sidebar-link.active i {
    color: #facc15 !important;
}

body.light-mode .sidebar .logo span.text-gradient {
    background: none !important;
    -webkit-text-fill-color: #facc15 !important;
    color: #facc15 !important;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Premium Obsidian Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Base Mesh Gradient Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    will-change: transform;
    backface-visibility: hidden;
    background: 
        radial-gradient(circle at 0% 0%, rgba(var(--accent-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(var(--accent-secondary-rgb), 0.1) 0%, transparent 50%);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sidebar Layout */
.layout-wrapper {
    display: flex;
}

.sidebar {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 260px;
    height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 100;
}

.content-wrapper {
    flex: 1;
    margin-left: 300px;
    padding-top: 20px;
}

.sidebar-nav {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.sidebar-link:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.sidebar-link.active {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
    border-radius: var(--radius-md);
    border-left: 3px solid #facc15;
    padding-left: 17px; /* compensate for border */
    box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.05);
}

.sidebar-link.active i,
.sidebar-link.active span {
    color: #facc15;
}

.nav-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.03);
    margin: 8px 12px;
}

.nav-badge {
    background: #facc15;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    text-transform: uppercase;
}

.link-purple {
    color: #d8b4fe !important;
    background: rgba(216, 180, 254, 0.05); /* Added box background */
    margin: 4px 0;
}

.link-purple:hover {
    background: rgba(216, 180, 254, 0.1) !important;
}

.link-red {
    color: #ef4444 !important;
    margin-top: 12px;
}

.link-red:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

.sidebar-footer {
    margin-top: auto;
}

.profile-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Removed 1024px mini-sidebar - deferring to standard mobile drawer */
/* Glassmorphism Class */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--accent-primary);
    color: #060709;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
    background: #eab308;
}

.btn-glass {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

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

/* Settings Modal Specifics */
.settings-card {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 24px;
}


.profile-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.avatar-placeholder {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.settings-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-field input {
    background: #111318;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: white;
    outline: none;
    transition: var(--transition-smooth);
}

.input-field input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.1);
}

.settings-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 600px) {
    .settings-input-group {
        grid-template-columns: 1fr;
    }
}
/* Data Table & Badges */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    background: #111318;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.history-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* History Table Styles */
.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.history-table th {
    background: #3b82f6; /* Blue matched from image */
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.history-table th:last-child {
    border-right: none;
}

.history-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.history-table tbody tr {
    transition: var(--transition-smooth);
    background: #111318;
}

.history-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.item-network-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.badge-info { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.badge-pending { background: rgba(var(--accent-rgb), 0.1); color: var(--accent-primary); }
.badge-danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.scrollable-area {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.scrollable-area::-webkit-scrollbar {
    width: 6px;
}

.scrollable-area::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Landing Page Specifics */
#landing-page {
    padding: 40px 0;
    animation: fadeIn 0.8s ease-out;
}

.hero-landing {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 80px;
}

.floating-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.feature-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(var(--accent-rgb), 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin: 80px 0;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    will-change: opacity;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
    display: flex !important;
}

.modal-content {
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 480px;
    padding: 32px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    will-change: transform, opacity;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Authentication Wall Overlay */
.auth-wall-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020617; /* Very dark slate */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000; /* Highest priority */
    padding: 24px;
}

.auth-wall-content {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Admin Portal Specific Modal */
.auth-overlay {
    z-index: 6000 !important;
}

/* Utilities */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Modal Close Button */
.modal-overlay .modal-content i[data-lucide="x"] {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.modal-overlay .modal-content i[data-lucide="x"]:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* Theme Toggle Enhancements */
.theme-toggle-btn i {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover i {
    transform: scale(1.2) rotate(15deg);
    color: var(--accent-primary);
}


/* Toast/Notification */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
}

.toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: #1e293b;
    border: 1px solid var(--border-glass);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    /* Fallback: if no JS, at least show it (optional, but good for stability) */
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure container doesn't have weird offset */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive / Mobile Optimization */
.mobile-header {
    display: none;
}

.close-sidebar-btn {
    display: none;
}

.mobile-nav {
    display: none;
}

@media (max-width: 1024px) {
    .content-wrapper {
        margin-left: 0;
        padding: 80px 16px 40px; 
        width: 100%;
        position: relative;
        z-index: 5;
        overflow-x: hidden;
    }

    .mobile-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(15, 17, 23, 0.9);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1100;
    }

    #mobile-menu-btn {
        display: flex !important;
        position: absolute;
        left: 16px;
        color: var(--text-primary); /* Ensures dynamic switching to dark/black in light mode */
    }
    
    .mobile-header .theme-toggle-btn {
        position: absolute;
        right: 16px;
    }

    .sidebar {
        position: fixed;
        width: 280px; /* Partial width instead of 100vw */
        height: 100vh;
        top: 0;
        left: 0;
        background: #11131c; /* Solid dark background */
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Start from top as in design */
        padding: 80px 24px 24px; /* Space for the logo and top bar */
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-link {
        justify-content: flex-start !important; /* Ensure icons aren't centered */
        padding: 14px 20px !important;
    }

    .sidebar-link span {
        display: block !important; /* Force labels to show */
        font-size: 0.95rem;
    }

    .close-sidebar-btn {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 2001;
        color: white !important;
    }


    .mobile-link.active {
        color: #1a1a0e !important;
        background: #facc15 !important;
        border-radius: 12px;
        font-weight: 700;
    }

    .mobile-link.active i,
    .mobile-link.active span {
        color: #1a1a0e !important;
    }

    /* Grid & Layout Mobile Overrides */
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        padding: 32px 0;
        margin: 32px 0;
    }

    .floating-glass {
        padding: 24px;
    }

    .stat-card {
        padding: 16px;
    }

    .modal-content {
        width: 95%;
        padding: 24px 16px;
        max-height: 90vh;
        overflow-y: auto;
    }

    h1 {
        font-size: 2rem !important;
    }

    .history-table th, .history-table td {
        font-size: 0.8rem;
        padding: 12px 8px;
    }
}

/* OTP Segmented UI - Core Styles */
.otp-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.otp-box {
    width: 45px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: var(--transition-smooth);
}

.otp-box:focus {
    border-color: var(--accent-primary);
    background: rgba(250, 204, 21, 0.05);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
    transform: translateY(-2px);
}

/* Process Flow UI */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-glow);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: white;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Light Mode Overrides */
body.light-mode {
    --bg-main: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(0, 0, 0, 0.05);
    --border-glass: rgba(0, 0, 0, 0.1);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
}
body.light-mode .mesh-bg {
    background-image: 
        radial-gradient(at 40% 20%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
}
body.light-mode .logo span { color: #0f172a !important; }
body.light-mode .sidebar-link { color: #475569; }
body.light-mode .sidebar-link:hover, body.light-mode .sidebar-link.active { background: rgba(0,0,0,0.05); color: #0f172a; }
body.light-mode .btn-glass { background: rgba(0,0,0,0.05); color: #0f172a; border-color: rgba(0,0,0,0.1); }
body.light-mode .btn-glass:hover { background: rgba(0,0,0,0.08); }
body.light-mode h1, body.light-mode h2, body.light-mode h3, body.light-mode h4, body.light-mode .stat-value { color: #0f172a !important; }
body.light-mode table th { color: #0f172a !important; }
body.light-mode .modal-content { background: rgba(255,255,255,0.95); }
body.light-mode #stat-total-orders, body.light-mode #stat-total-spent, body.light-mode #stat-this-month { color: #0f172a !important; }

@media (max-width: 768px) {
    .desktop-theme-toggle { display: none !important; }
    
    /* Convert tables to cards on mobile to stop horizontal overflow */
    .history-table thead {
        display: none;
    }
    .history-table, .history-table tbody, .history-table tr, .history-table td {
        display: block;
        width: 100%;
    }
    .history-table tr.history-card-row {
        margin-bottom: 20px;
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.02);
        padding: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    body.light-mode .history-table tr.history-card-row {
        background: white;
    }
    .history-table tr.history-card-row td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: right;
    }
    body.light-mode .history-table tr.history-card-row td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .history-table tr.history-card-row td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .history-table tr.history-card-row td:first-child {
        padding-top: 0;
    }
    .history-table tr.history-card-row td::before {
        content: attr(data-label);
        font-weight: 800;
        color: var(--text-muted);
        text-transform: uppercase;
        font-size: 0.75rem;
        margin-right: 16px;
        text-align: left;
    }
}

/* History Table Blue Header Styling */
.history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: transparent;
}

.history-table thead tr {
    background: #2563eb !important; /* Vibrant Royal Blue header bar */
}

.history-table th {
    padding: 14px 16px;
    font-size: 0.7rem;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
}

.history-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-glass);
    vertical-align: middle;
}
