/* Countdown Timer Styles */
.vdu-countdown-wrapper {
    margin-top: 1em;
    margin-bottom: 2em;
    padding: 1.5em;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 4px;
    border-left: 4px solid #d22b3f;
}

.vdu-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
}

.vdu-countdown-cell {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75em 1em;
    min-width: 80px;
    width: 80px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vdu-countdown-time {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #d22b3f;
    line-height: 1.2;
    font-family: 'PT Sans', sans-serif;
    min-width: 1.5em;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.vdu-countdown-label {
    display: block;
    font-size: 0.75em;
    color: #383838;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25em;
    font-family: 'PT Sans', sans-serif;
}

/* Separator between cells */
.vdu-countdown-cell + .vdu-countdown-cell::before {
    content: '';
}

/* Responsive styles */
@media (max-width: 768px) {
    .vdu-countdown-wrapper {
        padding: 1em;
    }
    
    .vdu-countdown-timer {
        gap: 0.35em;
    }
    
    .vdu-countdown-cell {
        padding: 0.5em 0.75em;
        min-width: 60px;
        width: 60px;
    }
    
    .vdu-countdown-time {
        font-size: 1.5em;
    }
    
    .vdu-countdown-label {
        font-size: 0.65em;
    }
}

@media (max-width: 480px) {
    .vdu-countdown-cell {
        padding: 0.4em 0.5em;
        min-width: 55px;
        width: 55px;
    }
    
    .vdu-countdown-time {
        font-size: 1.25em;
    }
    
    .vdu-countdown-label {
        font-size: 0.6em;
    }
}

