#sawir-lt-switcher {
	position: fixed;
	z-index: 2147482000;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	max-width: 60vw;
	padding: 6px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, .15 );
	font: 13px/1 -apple-system, "Segoe UI", Roboto, sans-serif;
}
#sawir-lt-switcher a {
	padding: 5px 9px;
	border-radius: 5px;
	color: #1d2327;
	text-decoration: none;
	white-space: nowrap;
}
#sawir-lt-switcher a:hover { background: #f0f0f1; }
#sawir-lt-switcher a.active { background: #2271b1; color: #fff; }

/* Layout: side by side */
#sawir-lt-switcher.sawir-lt-layout-row { flex-direction: row; }

/* Layout: dropdown — a toggle that reveals the options on hover / tap (focus) */
#sawir-lt-switcher.sawir-lt-layout-dropdown {
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	flex-wrap: nowrap;
}
#sawir-lt-switcher.sawir-lt-layout-dropdown .sawir-lt-toggle {
	cursor: pointer;
	padding: 7px 12px;
	color: #1d2327;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, .15 );
	font: inherit;
}
#sawir-lt-switcher.sawir-lt-layout-dropdown .sawir-lt-menu {
	position: absolute;
	display: none;
	flex-direction: column;
	gap: 4px;
	min-width: 100%;
	padding: 6px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, .15 );
	bottom: 100%;          /* default: open upward (bottom-anchored) */
	margin-bottom: 6px;
}
#sawir-lt-switcher.sawir-lt-layout-dropdown:hover .sawir-lt-menu,
#sawir-lt-switcher.sawir-lt-layout-dropdown:focus-within .sawir-lt-menu {
	display: flex;
}
/* open downward when anchored to the top */
#sawir-lt-switcher.sawir-lt-pos-tr.sawir-lt-layout-dropdown .sawir-lt-menu,
#sawir-lt-switcher.sawir-lt-pos-tl.sawir-lt-layout-dropdown .sawir-lt-menu {
	top: 100%;
	bottom: auto;
	margin-top: 6px;
	margin-bottom: 0;
}
/* align to the anchored side */
#sawir-lt-switcher.sawir-lt-pos-br.sawir-lt-layout-dropdown .sawir-lt-menu,
#sawir-lt-switcher.sawir-lt-pos-tr.sawir-lt-layout-dropdown .sawir-lt-menu { right: 0; }
#sawir-lt-switcher.sawir-lt-pos-bl.sawir-lt-layout-dropdown .sawir-lt-menu,
#sawir-lt-switcher.sawir-lt-pos-tl.sawir-lt-layout-dropdown .sawir-lt-menu { left: 0; }

/* Floating box position (corner) */
#sawir-lt-switcher.sawir-lt-pos-br { bottom: 16px; right: 16px; }
#sawir-lt-switcher.sawir-lt-pos-bl { bottom: 16px; left: 16px; }
#sawir-lt-switcher.sawir-lt-pos-tr { top: 16px; right: 16px; }
#sawir-lt-switcher.sawir-lt-pos-tl { top: 16px; left: 16px; }

/* Pill style: fully rounded. Position comes from the .sawir-lt-pos-* classes. */
#sawir-lt-switcher.sawir-lt-mode-bar { border-radius: 999px; }
#sawir-lt-switcher.sawir-lt-mode-bar a,
#sawir-lt-switcher.sawir-lt-mode-bar .sawir-lt-toggle { border-radius: 999px; }
