/* Fase 9 — ajustes em cima do Bootstrap 5 (tema escuro nativo via data-bs-theme) */

body {
    background-color: #0d1117;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    min-height: 100vh;
    background-color: #161b22;
    border-right: 1px solid #30363d;
}

.sidebar .nav-link.active {
    background-color: #2563eb;
    color: #fff;
}

.sidebar .nav-link:hover:not(.active) {
    background-color: #21262d;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 380px;
}

.card {
    background-color: #161b22;
    border: 1px solid #30363d;
}

.table {
    --bs-table-bg: transparent;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        min-height: auto;
    }
    .d-flex.sidebar-wrapper {
        flex-direction: column;
    }
}
