/* Countdown Display Plugin Styles */

/* Different styles based on urgency */

.countdown-display.countdown-tonight {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.countdown-error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.countdown-past {
    color: #6c757d;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    opacity: 0.7;
    text-decoration: line-through;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes urgent-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}