/* Custom styles layered on top of Bootstrap 5 */

:root {
    --sidebar-width: 250px;
}

body {
    min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────────────────── */
.app-sidebar {
    width: var(--sidebar-width);
    min-height: 100vh;
    border-right: 1px solid var(--bs-border-color);
}

.app-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--bs-body-color);
    border-radius: 0.375rem;
    padding: 0.55rem 0.9rem;
}

.app-sidebar .nav-link.active,
.app-sidebar .nav-link:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.app-sidebar .nav-link ion-icon {
    font-size: 1.2rem;
}

.app-brand {
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ── Topbar ──────────────────────────────────────────────────────── */
.app-topbar {
    border-bottom: 1px solid var(--bs-border-color);
}

/* ── Stat cards (dashboard) ──────────────────────────────────────── */
.stat-card {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5rem;
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* ── Dark mode ───────────────────────────────────────────────────── */
html[data-bs-theme="dark"] .app-sidebar {
    background-color: #1a1d20;
}

/* Auth (login) page */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
