/**
 * Fullscreen table editing
 */

 .acf-table-pro-root.acf-table-pro-fullscreen {
	position: fixed;
	background-color: white;
	z-index: 9998;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 100px 60px;
}

/**
 * Block editor
 * Since the table editor container cannot be positioned above the
 * wordpress admin menu and block editor navigation elements using z-index,
 * the available window is precisely adjusted instead.
 */
.block-editor .acf-table-pro-root.acf-table-pro-fullscreen {
	left: 0; /* Dynamically set by JavaScript */
	top: 92px;
	bottom: 25px;
	padding: 20px 16px 60px 16px;
}
.block-editor .edit-post-meta-boxes-main.is-resizable .acf-table-pro-root.acf-table-pro-fullscreen {
	top: 24px;
	bottom: 0;
}

/* Adjusts top spacing to align with mobile styling */
@media screen and (max-width: 782px) {

	.block-editor .acf-table-pro-root.acf-table-pro-fullscreen {
		top: 106px;
	}
}
