/* ...existing code... */

.countdown-time {
    font-size: 3.5rem; /* Increased from 2.5rem for better visibility */
    font-weight: bold;
    font-family: inherit; /* Ensure it inherits the site's font */
    line-height: 1.2; /* Better line spacing */
    margin: 0.5rem 0; /* Add some spacing */
    color: var(--accent-blue-dark); /* Keep the color from theme.css */
}

.countdown-unit {
    font-size: 1rem; /* Increased from 0.8em for better visibility */
    opacity: 0.9; /* Increased from 0.8 for better visibility */
    font-family: inherit; /* Ensure it inherits the site's font */
}

/* Add a subtle animation for the warning alert */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.alert-warning {
    animation: pulse 2s infinite;
}