/**
 * TranslatePRO Language Switcher Styles
 */

.tpro-switcher-wrap {
	margin: 10px 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.tpro-switcher {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 15px;
}

.tpro-lang-item {
	display: inline-block;
}

.tpro-lang-item a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	display: flex;
	align-items: center;
	padding: 5px 8px;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.tpro-lang-item a:hover {
	background: #f0f0f0;
}

.tpro-lang-item.active a {
	font-weight: bold;
	color: #0073aa;
	background: #e7f5ff;
}

.tpro-flag {
	margin-right: 5px;
	font-size: 18px;
}
