/* Gaya Global */
body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #444;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Tabel */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

thead {
    background-color: #007bff;
    color: white;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

th {
    position: sticky;
    top: 0;
    z-index: 2;
    text-transform: uppercase;
    font-weight: bold;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

tbody td {
    color: #555;
}

/* Hover Effect */
tbody tr:hover td {
    color: #007bff;
    font-weight: bold;
}
