/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Mengisi layar penuh secara vertikal */
}

header {
    background-color: #007BFF;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 24px;
    margin: 0;
}

main {
    flex: 1; /* Mengisi ruang antara header dan footer */
    width: 90%;
    margin: auto;
    padding: 20px;
    text-align: center;
}

main h2 {
    font-size: 22px;
    color: #007BFF;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: auto;
    text-align: left;
    font-size: 16px;
    margin-bottom: 30px; /* Spasi antar tabel */
}

table thead {
    background-color: #007BFF;
    color: white;
}

table th,
table td {
    padding: 10px;
    border: 1px solid #ddd;
}

table th:nth-child(1),
table td:nth-child(1) {
    width: 80%; /* 1/4 dari tabel Nama*/
    text-align: left;
}

table th:nth-child(2),
table td:nth-child(2) {
    width: 20%; /* 3/4 dari tabel Aksi*/
    text-align: center;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #e0f7ff;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto; /* Memastikan footer berada di bawah */
}
