.language-switcher {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 1000;
	display: flex;
	gap: 10px;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px;
	border-radius: 10px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-flag {
	width: 30px;
	height: 20px;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	opacity: 0.7;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.language-flag img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}

.language-flag:hover {
	opacity: 1;
	transform: scale(1.1);
}

.language-flag.active {
	opacity: 1;
	border-color: #fff;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
	.language-switcher {
		bottom: 10px;
		left: 10px;
		padding: 8px;
		gap: 8px;
	}
	
	.language-flag {
		width: 25px;
		height: 17px;
	}
} 