/* ===== RESET DAN DASAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
    background-color: #f9f9fb;
    color: #333;
    display: flex;
    height: 100vh;
}

a {
    text-decoration: none;
    color: #333;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 230px;
    background: #ffffff;
    border-right: 1px solid #ddd;
    padding: 20px 0;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar h2 {
    text-align: center;
    font-size: 1.1rem;
    color: #4a6fa5;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 10px 25px;
    transition: background 0.2s;
}

.sidebar ul li:hover {
    background: #f0f4fa;
}

.sidebar ul li a {
    color: #333;
    font-weight: 500;
}

.sidebar .footer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    padding: 10px;
    border-top: 1px solid #eee;
}

/* ===== KONTEN UTAMA ===== */
.main {
    margin-left: 230px;
    width: calc(100% - 230px);
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.navbar .title {
    font-size: 1rem;
    font-weight: 600;
    color: #4a6fa5;
}

/* ===== AREA KONTEN ===== */
.content {
    padding: 25px;
    overflow-y: auto;
}

.content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.content p {
    color: #555;
}