/* RESET DASAR */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
}

/* CONTAINER */
.container {
    width: 80%;
    margin: 30px auto;
}

/* JUDUL */
h2, h3 {
    text-align: center;
    color: #333;
}

/* NAVBAR */
.navbar {
    background-color: #2c3e50;
    padding: 12px;

    display: flex;
    justify-content: center;
    gap: 25px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    transition: 0.3s;
}

.navbar a:hover {
    background-color: #34495e;
}

/* TABEL */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 20px;
}

table th {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
}

table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* FORM */
input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* BUTTON */
button {
    background-color: #27ae60;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #2ecc71;
}

/* LINK */
a {
    color: #2980b9;
}

a:hover {
    text-decoration: underline;
}