
/*** tableaux ***/
.tableau-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tableau-page-item {
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #13357B;
    border-radius: 10px;
    color: #13357B;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

    .tableau-page-item:hover {
        background-color: #13357B;
        color: white;
    }

    .tableau-page-item.active {
        background-color: #13357B;
        color: white;
    }
/*** tableaux ***/