/* Countdown Timer Component */
.countdown-timer {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    font-family: 'Roboto', sans-serif;
}

.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    min-width: 60px;
}

.countdown-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    /* background: #f8f9fa; */
    border-radius: 0;
    padding: 8px 12px;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    min-width: 40px;
    text-align: center;
}

.countdown-period {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Compact version */
.countdown-compact {
    margin: 5px 0;
}

.countdown-compact .countdown-section {
    margin: 0 5px;
    min-width: 40px;
}

.countdown-compact .countdown-amount {
    font-size: 16px;
    padding: 5px 8px;
    min-width: 30px;
}

.countdown-compact .countdown-period {
    font-size: 10px;
    margin-top: 3px;
}

/* Expired state */
.countdown-expired {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.countdown-expired i {
    margin-right: 5px;
} 