/* Custom Checkbox Styling untuk Bulk Action */
.custom-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    color: #1e3a8a; /* blue-900 */
    background-color: #f9fafb; /* gray-50 */
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.custom-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}

/* Animasi baris tabel saat di-hover */
.table-row-hover {
    transition: background-color 0.2s ease;
}
.table-row-hover:hover {
    background-color: #f0fdf4; /* hijau sangat pudar agar admin fokus */
}

/* Kustomisasi tampilan scrollbar pada tabel (opsional) */
.table-container::-webkit-scrollbar {
    height: 8px;
}
.table-container::-webkit-scrollbar-track {
    background: #f1f5f9; 
    border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
.table-container::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}