/* B42 ACF Table Enabler - frontend base styles */
.entry-content table,
.wp-site-blocks table,
.b42-table,
.acf-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.entry-content th,
.entry-content td,
.wp-site-blocks th,
.wp-site-blocks td,
.b42-table th,
.b42-table td,
.acf-table th,
.acf-table td {
    border: 1px solid currentColor;
    padding: .5rem .65rem;
    vertical-align: top;
}

.entry-content th,
.wp-site-blocks th,
.b42-table th,
.acf-table th {
    font-weight: 600;
}

.b42-table--compact th,
.b42-table--compact td {
    padding: .3rem .45rem;
}

@media (max-width: 768px) {
    .entry-content table,
    .wp-site-blocks table,
    .b42-table,
    .acf-table table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }
}
