html,
body {
    background: #0f172a;
    color: #e2e8f0;
    font-family: "Segoe UI", Arial, sans-serif;
}

.page,
main {
    background: #0f172a;
    min-height: 100vh;
}

/* Sidebar */

.sidebar {
    background: #111827;
    border-right: 1px solid #1e293b;
}

.navbar {
    background: #111827 !important;
}

.nav-link {
    color: #cbd5e1;
    border-radius: 10px;
    margin: 4px 8px;
    transition: all .2s ease;
}

.nav-link:hover {
    background: #1e293b;
    color: white;
}

.nav-link.active {
    background: #2563eb;
    color: white;
}

/* Dashboard Cards */

.card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    color: white;
    transition: all .2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.card-header {
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid #334155;
}

.card-header h5 {
    margin: 0;
    font-weight: 600;
}

/* Statistic Cards */

.card.bg-dark {
    background: #162131 !important;
    border: 1px solid #2d3d52 !important;
}

.card.bg-dark:hover {
    border-color: #3b82f6 !important;
}

/* Progress */

.progress {
    height: 24px;
    background: #0f172a;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar {
    transition: width .4s ease;
}

/* Badges */

.badge {
    border-radius: 999px;
    font-weight: 600;
}

.badge.bg-success {
    background: #22c55e !important;
}

.badge.bg-danger {
    background: #ef4444 !important;
}

.badge.bg-secondary {
    background: #475569 !important;
}

/* Text */

.text-secondary {
    color: #94a3b8 !important;
}

hr {
    border-color: #334155;
}

.table-dark {
    --bs-table-bg: transparent;
}