#ptr-indicator {
    position: fixed;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.1s ease-out, top 0.1s ease-out;
    pointer-events: none;
}

#ptr-indicator i {
    color: #6366f1;
    font-size: 20px;
}

#ptr-indicator.ptr-refreshing i {
    animation: ptr-spin 1s linear infinite;
}

@keyframes ptr-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
