.language-switcher {
	position: fixed;
	top: 10px;
	right: 10px;
	padding: 10px;
}

.current-language {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.4);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.current-language img {
	height: 100%;
	width: 100%;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 40px;
	right: 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1;
	text-align: left;
}

.language-switcher:hover .dropdown-content {
	display: block;
}

.language-option {
	display: flex;
	align-items: center;
	padding: 5px 10px;
	cursor: pointer;
	white-space: nowrap;
}

.language-option a {
	text-decoration: none;
	display: flex;
	align-items: center;
	color: rgb(37, 80, 174);
	transition: color 0.2s ease-in-out;
}
.language-option a:hover {
	color: rgb(222, 189, 53);
}

.language-option img {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	margin-right: 8px;
	border: 1px solid rgba(0, 0, 0, 0.4);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-option span {
	font-size: 14px;
}

.language-option:hover {
	background-color: #f0f0f0;
	border-radius: 3px;
}

.language-option:hover img {
	background-color: #f0f0f0;
}