/* Estilo general del tablero */
.tableau-type01 {
    margin: 40px auto;
    max-width: 850px;    
    width: 100%;
    border-collapse: collapse;
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tableau-type01 th {
    background-color: var(--color-alfa);
    color: white;
    padding: 15px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255) ;
}

.tableau-type01 td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.tableau-type01 tr{
    height: fit-content;
}


.tableau-dates th {
    background-color: var(--color-blue-dark);
}

.tableau-dates th {
    background-color: var(--color-blue-dark);
}

.td-titre{
width: 40%;
}

.td-corps {
    text-align: center;
}

@media (max-width: 700px){
.tableau-type01{
    max-width: 100%;}
    .tableau-type01{
    padding: 6px 7px;}
}