.utm-countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.utm-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.utm-countdown-value {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.utm-countdown-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
}

.utm-countdown-separator {
    font-size: 24px;
    color: #666;
    margin: 0 5px;
}

.utm-countdown-ended {
    text-align: center;
    padding: 20px;
    background: #dc3545;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
}

.style-minimal .utm-countdown-item {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.style-circular .utm-countdown-item {
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style-circular .utm-countdown-value {
    color: #fff;
}