.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.65);
    z-index: 99999;
}

.circle-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
}

.progress-ring {
    transform: rotate(-90deg); /* да почне од горе */
}

.progress-ring-bg {
    fill: transparent;
    stroke: #2b2b2b;
    stroke-width: 10;
}

.progress-ring-fill {
    fill: transparent;
    stroke: #ff6a00; /* смени боја ако сакаш */
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 377; /* 2 * π * r (2*3.14*60 ≈ 377) */
    stroke-dashoffset: 377;
    transition: stroke-dashoffset .2s ease;
}

.circle-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}
