/**
 * Neptune Pagination - Styles
 *
 * @author    Neptune Team
 * @copyright Spring Court
 */

/* Bouton "Voir plus" */
.neptune-pagination-load-more-wrapper {
    text-align: center;
    margin: 40px 0;
    padding: 20px 0;
}

.neptune-load-more-btn {
    min-width: 200px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    /* border-radius: 4px; */
    transition: all 0.3s ease;
}

.neptune-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.neptune-load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.neptune-load-more-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.neptune-load-more-loader .material-icons {
    animation: spin 1s linear infinite;
}

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

/* Indicateur Lazy Loading */
.neptune-pagination-lazy-loading-wrapper {
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.neptune-lazy-loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #666;
    margin: 0;
    padding: 10px 0;
    min-height: 40px;
}

.neptune-lazy-loading-spinner {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.neptune-lazy-loading-spinner .material-icons {
    font-size: 24px;
    animation: spin 1s linear infinite;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Masquer la pagination classique quand on utilise un mode alternatif */
.neptune-pagination-active ~ nav.pagination {
    display: none !important;
}

