body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}
h1 {
    text-align: center;
    color: #2a6b4b;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 900;
    line-height: 30px;
}
.table-container {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    overflow: auto; /* Pastikan overflow aktif */
    max-height: 999px; /* Tetapkan tinggi maksimal */
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    vertical-align: middle;
}
th {
    background-color: #2a6b4b;
    color: #fff;
    position: sticky; /* Aktifkan sticky */
    top: 0; /* Pastikan tetap di atas */
    z-index: 2; /* Buat prioritas elemen lebih tinggi */
}
tr:nth-child(even) {
    background-color: #ccfecc;
}
tr:nth-child(odd) {
    background-color: #ffffff;
}
tbody td {
    text-align: center;
    vertical-align: middle;
}
@media (max-width: 250px) {
    table {
        display: block;
    }
    thead {
        display: none;
    }
    tbody tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }
    tbody td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }
    tbody td:last-child {
        border-bottom: none;
    }
    tbody td:before {
        content: attr(data-label);
        font-weight: bold;
        color: #2a6b4b;
    }
}