/* assets/styles/language_switcher.css */
.language-dropdown {
	position: relative;
	display: inline-block;
	min-width: 150px;
}

.language-selected {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 12px;
	background: white;
	border: 0px solid #e0e0e0;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
}

.language-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	margin-top: 4px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	z-index: 1000;
}

.language-menu.show {
	display: block;
}

.flag-icon {
	width: 24px;
	height: 16px;
	object-fit: contain;
}

.language-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	text-decoration: none;
	color: #333;
}

.language-option:hover {
	background: #f8f9fa;
}

.chevron {
	margin-left: auto;
	transition: transform 0.2s ease;
}