﻿.countdown-container {
    position: relative;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular {
    transform: rotate(-90deg); /* Starts the countdown from the top */
    position: absolute;
}

circle {
    fill: none;
    stroke-width: 10;
}

.background {
    stroke: #e6e6e6;
}

.progress {
    stroke: #00aaff;
    stroke-dasharray: 565.48; /* Circumference of the circle */
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.countdown-text {
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    color: #333;
}
