/* Style for the countdown timer container */
.countdown-timer-wrapper {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    font-size: 18px;
    color: #333;
}

/* Countdown timer style */
.countdown-timer {
    font-size: 36px;
    font-weight: bold;
    color: #6b4eff;
    margin-bottom: 10px;
}

/* Countdown finished message style */
.countdown-message {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    display: none;
}

/* Add a smooth transition for the visibility change of the message */
#timer-message {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#timer-message.show {
    opacity: 1;
}
