.wp-block-table {
    margin: 1.5rem 0;
}
.wp-block-table thead {
    background-color: rgba(0,0,0,0.1);
    border-bottom: 5px solid;
}
.wp-block-table th {
    font-weight: var(--wp--custom--font-weight--bold);
}
.wp-block-table td, 
.wp-block-table th {
    text-align: left;
    vertical-align: top;
    padding: 0.3em 0.5em;
}
.wp-block-table.is-style-stripes {
    border-bottom: 0;
}
.wp-block-table.is-style-stripes td, 
.wp-block-table.is-style-stripes th {
    border-color: inherit;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
    background-color: rgba(0,0,0,0.1);
    
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: unset;
}