/* Countdown Block Styles */
.soaf-countdown {
    transition: all 0.3s ease;
    border: 0 solid transparent;
    position: relative;
}

.soaf-countdown:hover {
    /* No shadow or transform on hover */
}

/* Display container */
.soaf-countdown__display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

/* Number styling */
.soaf-countdown__number {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    margin: 0 0.25rem;
}

/* Text elements */
.soaf-countdown__prefix,
.soaf-countdown__suffix {
    font-size: 1em;
    line-height: 1.4;
}

/* Placeholder and error states */
.soaf-countdown__placeholder,
.soaf-countdown__error,
.soaf-countdown__expired {
    text-align: center;
    font-style: italic;
    opacity: 0.7;
    padding: 1rem;
}

.soaf-countdown__error {
    color: #ef4444;
}

.soaf-countdown__expired {
    color: #6b7280;
}

/* Text alignment utilities */
.soaf-countdown.text-center .soaf-countdown__display {
    justify-content: center;
}

.soaf-countdown.text-left .soaf-countdown__display {
    justify-content: flex-start;
}

.soaf-countdown.text-right .soaf-countdown__display {
    justify-content: flex-end;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .soaf-countdown__number {
        font-size: 1.5em;
        margin: 0 0.125rem;
    }
    
    .soaf-countdown__display {
        gap: 0.125rem;
    }
}

@media (max-width: 480px) {
    .soaf-countdown__number {
        font-size: 1.25em;
    }
    
    .soaf-countdown__prefix,
    .soaf-countdown__suffix {
        font-size: 0.875em;
    }
} 