/* ===== General ===== */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.wrapper {
    display: flex;
    flex: 1;
}
.content {
    flex: 1;
    padding: 1.5rem;
    background-color: #F5F7FA;
}

/* ===== Navbar ===== */
.navbar {
    background-color: #00C2CB;
}

/* ===== Sidebar ===== */
.sidebar {
    width: 240px;
    min-width: 240px;
    background-color: #243A73;
    color: white;
}
.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
.sidebar a:hover,
.sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ===== Footer ===== */
.footer {
    background-color: #121212;
    color: #fff;
    padding: 0.75rem;
    text-align: center;
}

/* ===== Login Page ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F7FA;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.auth-logo {
    width: 160px;
    margin-bottom: 1.5rem;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -240px;
        top: 56px;
        height: calc(100% - 56px);
        transition: left 0.3s;
        z-index: 1000;
    }
    .sidebar.show {
        left: 0;
    }
    .content {
        padding: 1rem;
    }
}
