/* =========================
   ANIMASI MASUK CARD
   ========================= */
.absen-wrapper {
    animation: fadeSlide 0.6s ease-out;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   CARD ABSENSI
   ========================= */
.absen-card {
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.absen-title {
    font-weight: 600;
}

/* =========================
   LABEL DATA
   ========================= */
.label {
    color: #6c757d;
    width: 90px;
    display: inline-block;
}

/* =========================
   BOX STATUS JAM
   ========================= */
.status-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
}

.status-box p {
    margin-bottom: 8px;
}

/* =========================
   PEMBATAS
   ========================= */
.divider {
    border-top: 1px dashed #ddd;
    margin: 12px 0;
}

/* =========================
   HIGHLIGHT (SCAN BERHASIL)
   ========================= */
.highlight {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}
