
/* Status Kehadiran */
.present {
    background-color: #28a745; /* Hijau */
    color: white;
} /* Hadir */

.izin {
    background-color: #17a2b8; /* Biru Muda */
    color: white;
} /* Izin */

.holiday {
    background-color: #ffc107; /* Kuning */
    color: black;
} /* Libur */

.absent {
    background-color: #dc3545; /* Merah */
    color: white;
} /* Tidak Hadir */

.not-approved {
    background-color: #ff5722; /* Oranye */
    color: white;
} /* Tidak disetujui */

.inactive {
    background-color: #f0f0f0; /* Abu-abu Muda */
    color: #ccc; /* Abu-abu */
    text-align: center;
} /* Tidak aktif */

/* Layout Utama */
.main-content {
    padding: 20px;
}

/* Halaman Login */
.login-page {
    background: url('../../docs/assets/img/bg_1.jpg') no-repeat center center fixed;
    background-size: cover; /* Pastikan gambar mencakup seluruh layar */
    height: 100vh; /* Tinggi penuh layar */
    display: flex; /* Membuat elemen tengah */
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 450px; /* Lebar kotak login */
    background: rgba(255, 255, 255, 0.8); /* Latar belakang transparan */
    padding: 20px;
    border-radius: 20px; /* Sudut membulat */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Tambahkan bayangan untuk estetika */
}

/* Kartu Header */
.card-header {
    background: rgba(0, 123, 255, 0.9); /* Biru dengan transparansi */
    color: white;
    font-weight: bold; /* Tambahkan ketebalan teks */
    text-align: center;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    min-width: 1000px; /* Atur lebar minimum tabel jika perlu */
}