.aem-countdown-wrapper {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.aem-countdown-title {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.aem-countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.aem-countdown-display {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.aem-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.aem-countdown-value {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
    color: #333;
    margin-bottom: 5px;
}

.aem-countdown-label {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

.aem-countdown-info {
    text-align: center;
}

.aem-countdown-event-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.aem-countdown-event-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aem-countdown-event-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.aem-countdown-event-date {
    font-size: 1em;
    color: #666;
}

.aem-countdown-error,
.aem-countdown-expired {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    color: #856404;
    text-align: center;
}

.aem-countdown-expired {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* Widget specific styles */
.aem-countdown-widget {
    padding: 15px;
}

.aem-countdown-widget .aem-countdown-item {
    min-width: 70px;
    padding: 12px;
}

.aem-countdown-widget .aem-countdown-value {
    font-size: 2em;
}

/* Shortcode specific styles */
.aem-countdown-shortcode {
    padding: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .aem-countdown-display {
        gap: 10px;
    }

    .aem-countdown-item {
        min-width: 60px;
        padding: 10px;
    }

    .aem-countdown-value {
        font-size: 2em;
    }

    .aem-countdown-label {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .aem-countdown-display {
        gap: 8px;
    }

    .aem-countdown-item {
        min-width: 50px;
        padding: 8px;
    }

    .aem-countdown-value {
        font-size: 1.5em;
    }

    .aem-countdown-label {
        font-size: 0.7em;
    }
}
