/* Style pour le tableau */
.tableau {
    border-collapse: separate; /* Obligatoire pour le radius */
    border-spacing: 0;
    border-top: 1px solid #262660;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
    min-width: 60%;
    max-width: 100%;
    margin: 20px auto;
}
.tableau-header {
    background-color: #262660;
    color: white;
    border-radius: 5px 5px 0 0;
    
}
.content-tab-header th {
    padding: 20px;
    text-align: center;
    white-space: normal; 
    word-wrap: break-word;
    max-width: 300px;
}

/* Style pour le corps du tableau */
.tableau-boby {
    background-color: #ffffff;
}
tr.content-tab-body:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}
.content-tab-body td{
    text-align: center;
    padding: 15px 20px;
    padding: 15px 20px;
    border-bottom: 1px solid #2626603d;
}