
.progress-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 300px;
}

.progress-circle {
    position: relative;
    width: 150px;
    height: 80px;
}

.progress-circle > svg {
    transform: rotate(-90deg) !important;
}
svg {
    position: relative;
    width: 100%;
    height: 100%;
}

.timer-svg {
    transform: rotate(-90deg); /* Start from the top */
}

circle {
    transition: stroke-dashoffset 1s linear;
}

.progress {
    stroke-dasharray: 377; /* Circumference of the circle */
    stroke-dashoffset: 377; /* Start with stroke hidden */
    stroke-linecap: round; /* Makes the dashes rounded */
}

.base-stroke {
    stroke-dasharray: 3; /* Adjust this value for the length of dashes */
    stroke-dashoffset: 0; /* Start with stroke fully visible */
    stroke: #FFF; /* Dash color */
}

.time-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.time-label div {
    font-size: 20px;
    font-weight: bold;
    color: #0b5b2b;
}

.time-label span {
    font-size: 8px;
    color: #0b5b2b;
    text-transform: uppercase;
}
