/**
 * Tablepress plugin theme styling
*/

.tablepress {
    font-size: var(--wp--custom--table--font-size);
    padding: 0;
    max-width: 100%;
    text-indent: 0;
    border-style: hidden;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.tablepress tfoot th, .tablepress thead th {
    background: var(--wp--custom--table--thead--background);
    font-family: var(--wp--custom--table--thead--fontfamily);
    font-size: var(--wp--custom--table--thead--font-size--m);
}
.tablepress thead th, .tablepress tbody td, .tablepress tfoot th {
    border: var(--wp--custom--table--border--size) solid !important;
}
.tablepress tbody tr {
    background: var(--wp--custom--table--tr--background) !important;
}
.tablepress td, .tablepress th {
    padding: 10px;
}

