.infinite-scroll-loader {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin: 20px 0;
}

.infinite-scroll-spinner {
    display: flex;
    gap: 8px;
    align-items: center;
}

.spinner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #999;
    animation: spinnerPulse 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.spinner-dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes spinnerPulse {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
}

.infinite-scroll-sentinel {
    visibility: hidden;
}
