.ptr-container {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    pointer-events: none;
    will-change: transform, opacity;
}

.ptr-icon-wrapper {
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.ptr-spinner {
    width: 28px;
    height: 28px;
    transform: rotate(-90deg);
}

.ptr-path {
    stroke: #004d40; 
    stroke-linecap: round;
    stroke-dasharray: 100, 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.1s linear;
}

.ptr-refreshing .ptr-icon-wrapper {
    transform: scale(1);
}

.ptr-refreshing .ptr-spinner {
    animation: ptr-rotate 0.8s linear infinite;
}

@keyframes ptr-rotate {
    100% { transform: rotate(270deg); }
}