/**
 * Countdown Timer Dynamic Tag Styles
 *
 * @package BZDigital
 */

.bzd-countdown-timer-wrapper {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    transition: all 0.3s ease;
}

.bzd-countdown-prefix {
    display: inline;
}

.bzd-countdown-timer {
    display: inline;
}

/* Optional: Add styling when timer expires */
.bzd-countdown-timer-wrapper.bzd-countdown-expired {
    /* You can add custom styles for expired state */
    /* For example: */
    /* font-weight: bold; */
    /* color: #e74c3c; */
}

/* Optional: Style for the expired text specifically */
.bzd-countdown-timer-wrapper.bzd-countdown-expired .bzd-countdown-timer {
    /* Custom styles for expired timer text */
}

/* Optional: Pulse animation for urgency (uncomment to use) */
/*
.bzd-countdown-timer-wrapper.bzd-countdown-urgent .bzd-countdown-timer {
    animation: countdown-pulse 1s ease-in-out infinite;
}

@keyframes countdown-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
*/

