/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 01 2026 | 20:39:46 */
/*
 * Fügt im Backend Editor rote Umrandungen und Beschriftungen zu Elementen hinzu, die sonst
 * vollkommen unsichtbar wären.
 */


/* Umrandung für WordPress "Cover" (Weißer Bereich auf Startseite) */
.block-editor-block-list__layout .wp-block-cover__inner-container {
	outline: 1px solid red;
}

.block-editor-block-list__layout .wp-block-cover__inner-container::before {
	content: "White background";
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
/* places it just above the block */
	background: red;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px 3px 0 0;
	line-height: 1.2;
	pointer-events: none;
/* prevents interference with editing */
	z-index: 10;
}



/* Umrandung für WordPress Akkordeons */
.block-editor-block-list__layout .wp-block-accordion {
	outline: 1px solid red;
}

.block-editor-block-list__layout .wp-block-accordion::before {
	content: "Accordion";
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-100%);
/* places it just above the block */
	background: red;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 3px 3px 0 0;
	line-height: 1.2;
	pointer-events: none;
/* prevents interference with editing */
	z-index: 10;
}

.block-editor-block-list__layout .wp-block-accordion .wp-block-accordion {
	margin: 3px;
}