/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: #F1F5F9;
    color: #1f2937;
}

/* ===============================
   DASHBOARD LAYOUT
================================ */
.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    justify-content: center;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background: #1E40AF;
    color: white;
    padding: 25px 20px;
}

/* CONTENT */
.dashboard-content {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
}

/* ===============================
   HEADER
================================ */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dashboard-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1E40AF;
}

.dashboard-header span {
    font-size: 15px;
}

/* ===============================
   NAVBAR MENU (DATA MOBIL)
================================ */
.container-navbar {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #1E40AF;
    padding: 12px 0;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* UL */
.ul-navbar {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* LI */
.li-navbar {
    padding: 10px 18px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

/* LINK */
.a-navbar {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

/* HOVER */
.li-navbar:hover {
    background-color: #1E3A8A;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .dashboard-content {
        padding: 20px;
    }

    .ul-navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

.logout-btn.edit {
    background: #2563eb;
}