/* Auto Translate Multilang — switcher styles */

.atml-switcher {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.atml-switcher li {
	margin: 0;
}

.atml-switcher a {
	display: inline-block;
	padding: 4px 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 999px;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.6);
	transition: background 0.15s ease, border-color 0.15s ease;
}

.atml-switcher a:hover {
	border-color: rgba(0, 0, 0, 0.35);
	background: rgba(0, 0, 0, 0.04);
}

.atml-switcher li.atml-active a {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
	font-weight: 600;
}

/* Floating variant, bottom-right of the viewport */
.atml-floating-wrap {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9999;
	background: #fff;
	padding: 8px 10px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 600px) {
	.atml-floating-wrap {
		right: 10px;
		bottom: 10px;
		padding: 6px;
	}
	.atml-switcher a {
		font-size: 13px;
		padding: 3px 8px;
	}
}
