/**
 * Blocksy .is-layout-constrained sets direct children to --theme-block-width,
 * which shrinks Bootstrap content tables. Restore full content width.
 */

.is-layout-constrained > table.table,
.is-layout-flow > table.table {
	width: 100% !important;
	max-width: 100%;
	box-sizing: border-box;
}

.is-layout-constrained > figure:has(> table.table),
.is-layout-constrained > .wp-block-table:has(table.table) {
	width: 100% !important;
	max-width: 100%;
}

.is-layout-constrained figure table.table,
.is-layout-constrained .wp-block-table table.table {
	width: 100%;
	max-width: 100%;
}
