body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    box-sizing: border-box;
}


.editable:focus {
    outline: 2px solid #007bff;
    /* Garis biru saat fokus */
    background-color: #e6f7ff;
    /* Warna latar saat fokus */
    border-radius: 4px;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-sizing: border-box;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 700;
}

.search-container {
    margin-bottom: 30px;
}

#searchInput {
    width: calc(100% - 40px);
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
}

#searchInput:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.table-container {
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

table thead {
    background-color: #007bff;
    color: white;
}

table th,
table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    font-weight: 700;
    font-size: 1.1em;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #eef;
    cursor: pointer;
}

input[type="checkbox"] {
    transform: scale(1.5);
    margin: 0;
    cursor: pointer;
    accent-color: #28a745;
    /* Warna hijau untuk checkbox yang diceklis */
}

#noResults {
    color: #666;
    font-style: italic;
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    table th,
    table td {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    #searchInput {
        width: calc(100% - 20px);
        padding: 10px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }
}

/* ... CSS yang sudah ada ... */

.sortable {
    cursor: pointer;
    position: relative;
    /* Penting untuk penempatan ikon */
    padding-right: 25px;
    /* Beri ruang untuk ikon */
}

.sort-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0.4;
    /* Agak transparan saat tidak aktif */
}

.sort-icon.asc {
    border-bottom: 5px solid white;
    /* Panah ke atas */
    opacity: 1;
}

.sort-icon.desc {
    border-top: 5px solid white;
    /* Panah ke bawah */
    opacity: 1;
}

.sortable:hover .sort-icon {
    opacity: 0.7;
    /* Sedikit lebih jelas saat hover */
}

/* ... CSS yang sudah ada ... */

.status-verified {
    color: #28a745;
    /* Warna hijau untuk terverifikasi */
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 5px;
    /* Sedikit jarak dari checkbox */
    display: block;
    /* Agar teks berada di baris baru */
}

.status-unverified {
    color: #dc3545;
    /* Warna merah untuk belum terverifikasi */
    font-weight: bold;
    font-size: 0.9em;
    margin-top: 5px;
    /* Sedikit jarak dari checkbox */
    display: block;
    /* Agar teks berada di baris baru */
}