body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f0f0f0;
}

header {
    text-align: center;
    padding: 10px;
}

header img {
    width: 100%;
    height: auto;
}

.resize {
    width: 3000px;
    height: 2000px;
}

.navbar {
    overflow: hidden;
    background-color: #999999;
    border-bottom: 1px solid #ddd; /* Garis bawah untuk navbar */
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s; /* Efek transisi saat hover */
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar a.active {
    background-color: #4CAF50; /* Warna latar aktif */
    color: white;
}

.navbar a.active:hover {
    background-color: #45a049; /* Warna latar aktif saat hover */
}

.container {
    width: 100%; /* Mengisi seluruh lebar kontainer */
    max-width: 1200px; /* Lebar maksimum yang Anda inginkan */
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Jika Anda memiliki container-wrapper */
.container-wrapper {
    display: flex;
    flex-wrap: wrap; /* Memungkinkan kontainer melipat jika diperlukan */
    justify-content: center; /* Mengatur penataan kontainer di tengah */
}

.container {
    flex: 1 1 auto; /* Membuat container fleksibel dengan lebar otomatis */
    max-width: 100%; /* Lebar maksimum container */
}

form {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input[type="date"] {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #1E74FD;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

th,
td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #1E74FD;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.sent {
    color: green;
    font-weight: bold;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.pagination a:hover {
    background-color: #0056b3;
}

.pagination span {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    background-color: #ccc;
    color: #333;
    border-radius: 5px;
}

.pagination .disabled {
    pointer-events: none;
    background-color: #eee;
    color: #666;
}

.lulus {
    color: green;
    font-weight: bold;
}

.tidak-lulus {
    color: red;
    font-weight: bold;
}

.sedang-proses {
    color: yellow;
    font-weight: bold;
}

.container-wrapper {
    display: flex;
    justify-content: space-around; /* Menyusun elemen secara horizontal dengan ruang di antara */
    margin-bottom: 20px; /* Spasi antara bagian */
}

.container {
    flex: 1; /* Membuat setiap container fleksibel */
    padding: 10px; /* Padding untuk ruang di dalam container */
    border: 1px solid #ccc; /* Garis pemisah untuk visual */
    border-radius: 5px; /* Sudut melengkung untuk tampilan lebih baik */
}

.container h3 {
    margin-bottom: 10px; /* Spasi ke bawah untuk judul */
}

.container ul {
    list-style: none; /* Menghilangkan bullet dari list */
    padding: 0;
}

.container ul li {
    margin-bottom: 5px; /* Spasi antar item dalam list */
}

.lulus {
    color: green;
    font-weight: bold;
}

.tidak-lulus {
    color: red;
    font-weight: bold;
}

#data-table tbody td {
    padding: 8px;
}
        
#data-table tbody td[data-idstatus='0'] {
    background-color: #f7b731; /* Sedang Proses (Kuning) */
}
        
        #data-table tbody td[data-idstatus='1'] {
            background-color: #28a745; /* Lulus (Hijau) */
        }
        
        #data-table tbody td[data-idstatus='2'] {
            background-color: #dc3545; /* Tidak Lulus (Merah) */
        }

        #data-table tbody td[data-idstatus='3'] {
            background-color: #007bff; /* Selesai (Biru) */
        }

        #data-table tbody td[data-idstatus='4'] {
            background-color: #6c757d; /* Tidak Diketahui (Abu-abu) */
        }

        /* Style untuk animasi scroll */
        #data-table {
            max-height: 400px; /* Tinggi maksimum tabel */
            overflow-y: hidden; /* Sembunyikan scroll vertikal bawaan */
            position: relative; /* Position relative untuk animasi */
        }

        /* Bold font for status column */
        #data-table tbody td:nth-child(4) {
            font-weight: bold;
            text-transform: uppercase; /* Uppercase text */
        }

        /* Log container style */
        #log-container {
            margin-top: 20px;
            padding: 10px;
            background-color: #f2f0f0;
            border: 1px solid #ccc;
        }

        h1 {
            display: flex;
            align-items: center;
        }

        h1 img {
            height: 50px;
            margin-right: 10px;
        }

        .address {
            font-size: 18px;
            font-style: italic;
            color: #666;
            font-weight: bold;
        }
