.language-selector {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: white;
	padding: 1rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.language-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 0.5rem;
	background: #f3f4f6;
	cursor: pointer;
	transition: all 0.2s;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.language-btn:hover {
	background: #e5e7eb;
}
.language-btn.active {
	background: #dc2626;
	color: white;
}
.language-btn img {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
}