body.bg-slate {
    background: radial-gradient(circle at top, #1f2b4d, #0f172a);
    min-height: 100vh;
    color: #0f172a;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #f8fafc;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card .label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.stat-card .value {
    font-size: 2.25rem;
    font-weight: 600;
}

.table-modern thead {
    color: #f8fafc;
}

.table-modern thead tr {
    background: linear-gradient(135deg, #0f172a, #1f2937);
}

.table-modern thead th {
    padding: 1.1rem 1.25rem;
    border-bottom: none;
}

.sort-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.sort-trigger .sort-indicator {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.sort-trigger.active {
    color: #38bdf8;
}

.sort-trigger:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
    border-radius: 999px;
}

.table-modern tbody tr {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.table-modern tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.table-modern td, .table-modern th {
    vertical-align: middle;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7, #1d4ed8);
}

.toast-container {
    z-index: 1080;
}

.disclaimer-card {
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(6px);
    line-height: 1.6;
}

.disclaimer-card h2 {
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.disclaimer-card p + p {
    margin-top: 1rem;
}

.disclaimer-link {
    color: #38bdf8;
}

.disclaimer-link:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

@media (max-width: 576px) {
    header .display-4 {
        font-size: 2rem;
    }

    .stat-card {
        text-align: center;
    }
}
.site-footer {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-link {
    color: #38bdf8;
    text-decoration: none;
}

.footer-link:hover {
    color: #0ea5e9;
    text-decoration: underline;
}
