/* Persistent wrapper for the iframe and facade */
.cookiebot-assist-wrapper {
	position: relative;
	display: block;
	width: 100%;
}

/* Default aspect ratio for standard blocks */
.cookiebot-assist-wrapper:not(.cookiebot-assist-wrapper--wp-embed) {
	/*aspect-ratio: 16 / 9;*/
}

/* Support for Gutenberg's aspect-ratio classes */
.wp-has-aspect-ratio .wp-block-embed__wrapper > .cookiebot-assist-wrapper {
	/* position:absolute here if needed, assumes using aspect-ratio by default */
}

/* The facade overlays the entire wrapper area */
.cookiebot-assist {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	line-height: 1.2;
	padding: 1rem;
	box-sizing: border-box;
}

.cookiebot-assist__content {
	padding: clamp(0.5rem, 5%, 2rem);
	background: white;
	text-align: center;
}

.cookiebot-assist__actions {
	margin-top: 1rem;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.cookiebot-assist__button {
	cursor: pointer;
	padding: 8px 16px;
	background: #000;
	color: #fff;
	border: none;
	text-decoration: none;
	font-size: 14px;
}
