/* Grundfarbe im Hellmodus, damit nie ein dunkler Blitz zu sehen ist */
html[data-elc-theme="light"] { background: #f7f9fb; color-scheme: light; }
html[data-elc-theme="light"] body { background-color: #f7f9fb; }

/* Umschalt-Knopf */
#elc-ts-btn {
	position: fixed; left: 20px; bottom: 20px; z-index: 99990;
	width: 46px; height: 46px; border-radius: 50%;
	border: 1px solid #dab970; background: #111827; color: #dab970;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; padding: 0; box-shadow: 0 4px 15px rgba(0, 0, 0, .35);
	transition: transform .2s ease;
}
#elc-ts-btn:hover { transform: scale(1.08); }
#elc-ts-btn:focus-visible { outline: 3px solid #dab970; outline-offset: 3px; }
#elc-ts-btn svg { width: 22px; height: 22px; fill: currentColor; }
#elc-ts-btn .elc-ts-sun { display: none; }
html[data-elc-theme="dark"] #elc-ts-btn .elc-ts-sun { display: block; }
html[data-elc-theme="dark"] #elc-ts-btn .elc-ts-moon { display: none; }
html[data-elc-theme="light"] #elc-ts-btn { background: #fff; color: #8a6a1f; border-color: #8a6a1f; }
