/* Language Switcher Styles */

/* Pre-auth pages: position top-right */
.language-switcher {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 100;
}

.language-switcher select {
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	font-size: 13px;
	color: #333;
	cursor: pointer;
	outline: none;
	min-width: 120px;
}

.language-switcher select:hover {
	border-color: #999;
}

.language-switcher select:focus {
	border-color: #54de62;
	box-shadow: 0 0 3px rgba(84, 222, 98, 0.3);
}

/* Post-auth pages: inline in navigation area */
.navigation-container .language-switcher {
	position: relative;
	top: auto;
	right: auto;
	z-index: auto;
	display: inline-block;
	float: right;
	margin-top: 5px;
}

.navigation-container .language-switcher select {
	padding: 3px 8px;
	font-size: 12px;
	min-width: 100px;
}

/* Responsive: ensure switcher is accessible on mobile */
@media (max-width: 767px) {
	.language-switcher {
		top: 10px;
		right: 10px;
	}

	.language-switcher select {
		font-size: 12px;
		min-width: 100px;
		padding: 4px 6px;
	}

	.navigation-container .language-switcher {
		float: none;
		display: block;
		margin: 5px 0;
		text-align: right;
	}
}
