/* Перемикач мов під навбаром */
.language-switcher-container {
	position: fixed;
	top: 60px;
	right: 15px;
	z-index: 1000;
}
.language-dropdown .dropdown-toggle {
	display: flex;
	align-items: center;
	background: white;
	border: 1px solid #bfc1c2;
	color: rgba(26,36,63,0.8);
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	min-width: 70px;
	justify-content: center;
}
.language-dropdown .dropdown-toggle:hover,
.language-dropdown .dropdown-toggle:focus {
	background: rgba(26,36,63,0.8);
	color: white;
	border-color: rgba(26,36,63,0.8);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
	transform: translateY(-2px);
}
.language-dropdown .dropdown-menu {
	border: none;
	border-radius: 0;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	padding: 10px;
	margin-top: 10px;
	min-width: 100px;
}
.language-dropdown .dropdown-item {
	transition: all 0.2s ease;
	font-weight: 500;
}
.language-dropdown .dropdown-item:hover {
	background: #f0f2ff;
	color: rgba(26,36,63,0.8);
}
.language-dropdown .dropdown-item.active {
	background: rgba(26,36,63,0.8);
	color: white;
}
/* Адаптивність */
@media (max-width: 768px) {
	.language-switcher-container {
		right: 10px;
	}
	
	.language-dropdown .dropdown-toggle {
		padding: 8px 14px;
		font-size: 14px;
	}
}
