@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.pagination-loader {
    display: flex;
    min-height: 75px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pagination-loader .progress-indicator {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bs-primary);
    border-top: 4px solid #f5f5f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}