.sm-ml-switcher {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	font-size: 14px;
	line-height: 1;
}
.sm-ml-switcher a.sm-ml-lang {
	text-decoration: none;
	opacity: 0.6;
	transition: opacity .15s ease;
}
.sm-ml-switcher a.sm-ml-lang:hover,
.sm-ml-switcher a.sm-ml-lang.sm-ml-current {
	opacity: 1;
	font-weight: 600;
}

/* Pływający przełącznik w rogu ekranu (wstrzykiwany automatycznie) */
.sm-ml-switcher-floating {
	position: fixed;
	z-index: 99999;
	background: #ffffff;
	color: #1d2327;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
	padding: 8px 14px;
}
.sm-ml-switcher-floating .sm-ml-switcher a.sm-ml-lang {
	color: #1d2327;
}
.sm-ml-switcher-floating.sm-ml-pos-top-right {
	top: 16px;
	right: 16px;
}
.sm-ml-switcher-floating.sm-ml-pos-top-left {
	top: 16px;
	left: 16px;
}
.sm-ml-switcher-floating.sm-ml-pos-bottom-right {
	bottom: 16px;
	right: 16px;
}
.sm-ml-switcher-floating.sm-ml-pos-bottom-left {
	bottom: 16px;
	left: 16px;
}
@media (max-width: 480px) {
	.sm-ml-switcher-floating {
		padding: 6px 10px;
	}
	.sm-ml-switcher {
		gap: 8px;
		font-size: 12px;
	}
}
