body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #072019, #134e5e, #71b280);
}

h1 {
    text-align: center;
    color: white !important;
    margin-bottom: 20px;
}

.statistik {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    background: white;
    flex: 1;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

.stat-item p {
    margin: 0 0 5px 0;
    color: gray;
    font-size: 12px;
}

.stat-item span {
    font-size: 28px;
    font-weight: bold;
}

.kotak {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.dua-kolom {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.dua-kolom .kotak {
    flex: 1;
    margin-bottom: 0;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

label {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.wajib {
    color: red;
}

.dua-input {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.dua-input div {
    flex: 1;
}

.subjudul {
    font-weight: bold;
    margin: 15px 0 10px 0;
    color: #1d9e75;
}

hr {
    margin: 15px 0;
}

.tombol-merah {
    background: #e24b4a;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.tombol-hijau {
    background: #1d9e75;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.baris-search {
    display: flex;
    gap: 10px;
}

.tombol-biru {
    background: #4f6ef7;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.tombol-abu {
    background: #eee;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}

td {
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
}

.kosong {
    text-align: center;
    color: gray;
}

.btn-edit, .btn-hapus {
    padding: 5px 10px;
    margin: 0 6px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}

.btn-edit {
    background: #1d9e75;
    color: white;
}

.btn-hapus {
    background: #dc3545;
    color: white;
}

.modal-edit {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-edit>div {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
}

.modal-edit button {
    padding: 6px 12px;
    margin-top: 10px;
    margin-right: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    position: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
}