/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* --- Halaman Login --- */
.login-card {
    width: 100%;
    max-width: 450px;
    border: none;
    border-radius: 1rem;
}

/* --- Dashboard Absensi Siswa (index.php) --- */
.student-dashboard-card {
    width: 100%;
    max-width: 800px;
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
}

.student-dashboard-card .student-name {
    font-weight: 700;
    font-size: 1.8rem;
    color: #212529;
}

#live-clock {
    color: #0d6efd;
    letter-spacing: 1px;
}

.status-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.status-box .icon-wrapper {
    font-size: 3rem;
    color: #6c757d; /* Warna ikon default */
    margin-bottom: 0.5rem;
}

.status-box.checked {
    background-color: #d1e7dd; /* Hijau muda */
    border-color: #0f5132;
}

.status-box.checked .icon-wrapper {
    color: #0f5132; /* Hijau */
}

.action-area .btn-action {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

.action-area .btn-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-pagi {
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
}

.btn-sore {
    background: linear-gradient(45deg, #6610f2, #fd7e14);
}

.card-footer {
    background-color: #f8f9fa;
}