/* Styles pour les boutons de navigation améliorés */

/* Style commun pour tous les boutons de navigation */
.control-button {
    background: none;
    border: none;
    color: #666;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Style pour les boutons désactivés */
.control-button.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Annuler l'effet de survol pour les boutons désactivés */
.control-button.disabled:hover {
    background-color: transparent;
    color: #ccc;
}

/* Style au survol pour tous les boutons */
.control-button:hover {
    color: white;
    background-color: #6B59A1; /* Couleur violette cohérente avec le design */
}

/* Style spécifique pour les boutons première/dernière page */
.first-page, .last-page {
    font-size: 0.9em;
    margin: 0 2px;
}

/* Style pour la pagination */
.page-counter {
    font-size: 0.9em;
    color: #666;
    margin: 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: white;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Style pour le numéro de page actuel */
.current-page {
    font-weight: bold;
    color: #6B59A1;
    cursor: pointer;
}

/* Style pour la barre de progression */
.progress-bar {
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 3px;
    background-color: #6B59A1;
    transition: width 0.3s ease;
}

/* Style pour les contrôles de page */
.page-controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    margin-top: 10px;
}

/* Style pour les contrôles à gauche */
.left-controls {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 5px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
