.sbr-banner,
.sbr-notice {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0.6rem 1rem;
	background: #1d2327;
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.4;
}

.sbr-banner[hidden],
.sbr-notice[hidden] {
	display: none;
}

.sbr-banner__link {
	color: #fff;
	text-decoration: underline;
}

.sbr-banner__close,
.sbr-notice__close {
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	font-size: 1.2rem;
	line-height: 1;
	padding: 0 0.3rem;
}

/* Schwebender Umschalter. Bewusst zurueckhaltend gestaltet, damit eigenes
   CSS im Theme die Farben ohne !important uebernehmen kann. */
.sbr-switcher--float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9990;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 6px;
	background: #1d2327;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sbr-switcher--float:hover,
.sbr-switcher--float:focus-visible {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.34);
}

.sbr-switcher--float.sbr-switcher--links {
	right: auto;
	left: 24px;
}

@media (max-width: 767px) {
	.sbr-switcher--float {
		right: 16px;
		bottom: 16px;
		padding: 10px 14px;
		font-size: 14px;
	}

	.sbr-switcher--float.sbr-switcher--links {
		right: auto;
		left: 16px;
	}
}
