/* ReviseWise Admin - small extras on top of Tailwind utility classes */
body {
    font-family: 'Hind Siliguri', 'Segoe UI', sans-serif;
    background-color: #0f1220;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #161a2e; }
::-webkit-scrollbar-thumb { background: #2d3352; border-radius: 4px; }

.card {
    background-color: #1a1f38;
    border: 1px solid #262c4a;
    border-radius: 0.75rem;
}

.sidebar-link.active {
    background-color: #2d3352;
    color: #ffffff;
}

table.data-table th,
table.data-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #262c4a;
    text-align: left;
    white-space: nowrap;
}
table.data-table th {
    color: #9aa3c7;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        height: 100%;
        z-index: 40;
        transition: left 0.2s ease;
    }
    #sidebar.open { left: 0; }
}
