/* styles.css */
.progress-wrapper {
    position:fixed;
    left:40px;
    top:40px;
    z-index:50000000;
    padding:6px;
    background:#f2f2f2;
    border-radius:50%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
}

.progress-wrapper.hidden {
    display:none !important;
    visibility: hidden  !important;
}

/* styles.css */
.progress-circle {
    width: 50px;
    height: 50px;
}

.circular-chart {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #9f2139;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 3.8;
    stroke: #e5e5e5; 
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 0, 100; 
    transition: stroke-dasharray 0.3s ease;
}

#countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px; 
    font-weight: bold;
    color: #9f2139; 
}