/* ===== Body ===== */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 20px;
}

/* ===== Menu Navigasi Modern ===== */
nav {
    background: linear-gradient(90deg, #1e88e5, #1565c0);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Link menu */
nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 18px;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hover effect */
nav a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ===== Heading ===== */
h1, h2 {
    color: #333;
}

/* ===== Form ===== */
form input, form select, form button {
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    background-color: #1e88e5;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

form button:hover {
    background-color: #1565c0;
}

/* ===== Table ===== */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #1e88e5;
    color: white;
}

table tr:hover {
    background-color: #f1f7ff;
}

/* ===== MENU AKTIF ===== */
.navbar a.active {
    background-color: rgba(255,255,255,0.35);
    box-shadow: inset 0 -3px 0 #ffffff;
}
table {
    border-collapse: collapse;
    width: 100%;
    background: white;
}

th {
    background: #2196F3;
    color: white;
}

td, th {
    padding: 8px;
    text-align: center;
}

