.circular-progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.circle-svg {
    width: 220px;
    height: 220px;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 12;
}

.circle-prog {
    fill: none;
    stroke: #4fd1c5;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 150;
}

.circle-content {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-display {
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-size: 42px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0;
}
