.tableau {
    width: 100%;
    border-spacing: 0px 15px;
}

.tableau th {
    padding: 15px;
    text-align: left;
}

.tableau td {
    padding: 18px;
    background-color: var(--main-white);
}

.tableau tr td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.tableau tr td:last-child {
    /* TD ACTION */
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: bold;
    width: 100px;
}


/* Tabeleau de connexion */

table.connexion {
    width: 50%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-spacing: 10px 20px;
}

table.noBackground td {
    background-color: transparent !important;
}