.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination button {
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#prevBtn {
    background-color: #333; /* Noir ou gris foncé pour le bouton précédent */
    color: white;
}

#prevBtn:hover:not(:disabled) {
    background-color: #555;
}

#nextBtn {
    background-color: #E91E63; /* Rose pour le bouton suivant */
    color: white;
}

#nextBtn:hover:not(:disabled) {
    background-color: #d81b60;
}

.pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination .active {
    font-weight: bold;
    text-decoration: underline;
}
