/**
 * Edmentum Countdown Widget Styles
 */

.edm-countdown {
    font-family: 'Open Sans', system-ui, sans-serif;
    text-align: center;
}

.edm-countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.edm-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.edm-countdown-number {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    background: #00689e;
    padding: 1rem;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
}

.edm-countdown-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 640px) {
    .edm-countdown-unit {
        min-width: 60px;
    }
    
    .edm-countdown-number {
        font-size: 2rem;
        padding: 0.75rem;
        min-width: 80px;
    }
    
    .edm-countdown-label {
        font-size: 0.75rem;
    }
} 