body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 20px;
    color: #333;
}

h1 {
    color: #0056b3;
    text-align: center;
}

p {
    text-align: center;
}

#userTable {
    width: 80%;
    margin: 20px auto; /* Pusatkan tabel */
    border-collapse: collapse; /* Hilangkan jarak antar border sel */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#userTable th, #userTable td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

#userTable th {
    background-color: #007bff;
    color: white;
}

#userTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

#userTable tr:hover {
    background-color: #ddd;
}

#message {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    display: none; /* Sembunyikan secara default */
}