/**
 * Text Countdown Styles
 */

.countdown-display {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.countdown-display.countdown-uppercase {
    text-transform: uppercase;
}

.countdown-recurring {
    /* Styling for recurring countdowns */
}

.countdown-monthly {
    /* Styling specifically for monthly countdowns */
}

.countdown-error {
    color: #dc3545;
    font-weight: normal;
}

.countdown-past {
    color: #6c757d;
    opacity: 0.7;
}

/* Optional theme variations */
.countdown-display.countdown-large {
    font-size: 1.2em;
}

.countdown-display.countdown-small {
    font-size: 0.9em;
}

.countdown-display.countdown-highlight {
    background: #ffc107;
    padding: 0.25em 0.5em;
    border-radius: 4px;
}

.countdown-display.countdown-badge {
    background: #dc3545;
    color: white;
    padding: 0.25em 0.75em;
    border-radius: 20px;
    font-size: 0.85em;
}
