/* Menggunakan font Inter sebagai default */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8; /* Warna latar belakang netral */
}

/* Efek transisi untuk perubahan konten yang lebih mulus */
.schedule-card-content {
    transition: all 0.5s ease-in-out;
}

/* Animasi sederhana untuk kartu saat dimuat */
.schedule-card {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styling untuk status "sedang berlangsung" */
.live-indicator {
    width: 12px;
    height: 12px;
    background-color: #10b981; /* Hijau cerah */
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Styling untuk indikator istirahat */
.break-indicator {
    background-color: #f59e0b; /* Kuning/oranye */
}

/* Animasi denyut untuk indikator live */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}
