.wp-block-table.is-style-stripes {
    background-color: #fff;
    border: none;
    line-height: var(--wp--custom--line-height-m);
}

.wp-block-table thead {
    border: none;
}

.wp-block-table th {
    font-weight: 400;
    color: var(--wp--preset--color--gris);
    text-align: left;
}

.wp-block-table tr a {
    color: var(--wp--preset--color--noir);
}

.wp-block-table tr a::before {
    content: "";
    display: inline-flex;
    height: var(--wp--preset--font-size--s);
    width: var(--wp--preset--font-size--s);
    vertical-align: middle;
    margin-right: 0.25rem;
    -webkit-mask: url("./../img/file_save.svg") no-repeat center / contain;
    mask: url("./../img/file_save.svg") no-repeat center / contain;
    background-color: var(--wp--preset--color--noir);
    transition: all 0.3s ease-in-out;
}


@media screen and (max-width: 600px) {
    .wp-block-table .has-fixed-layout {
        width: unset;
    }
    .wp-block-table tr td {
        width: 150px;
        min-width: 150px;
    }
    
}

