/* ============================================================
   Innermost Labs Theme Toggle — the floating switch button only.
   The light/dark colour tokens live in the THEME (so the front end
   and the block editor both follow the OS preference); this plugin
   just sets the [data-theme] attribute for a manual override.
   ============================================================ */

.ino-theme-btn {
	position: fixed; right: 1rem; bottom: 1rem; z-index: 9997;
	width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid var(--ino-border); background: var(--ino-surface); color: var(--ino-text);
	font-size: 19px; line-height: 1; cursor: pointer;
	box-shadow: 0 6px 20px var(--ino-shadow);
	display: flex; align-items: center; justify-content: center; padding: 0;
}
.ino-theme-btn:hover { border-color: var(--wp--preset--color--primary); color: var(--wp--preset--color--primary); }
.ino-theme-btn::before { content: "\2600\FE0E"; }
.ino-theme-btn[data-eff="light"]::before { content: "\263D"; }
