/* === Progress Indicator Styles === */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.progress-wrap.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: 48px;
    height: 48px;
}

.progress-circle-bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 3;
}

.progress-circle-fill {
    fill: none;
    stroke: #3A63AC;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 125.6; /* Approximate 2πr for r = 20 */
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.2s ease-out;
}

.progress-arrow {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    pointer-events: none;
}
