.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 10px;
}

.language-switcher a {
	padding: 5px 10px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.language-switcher a:hover {
	background-color: var(--brand-blue-100, #D9F8FC);
}

.language-switcher a.active {
	background-color: var(--brand-blue-500, #80E6F2);
	font-weight: 500;
}

.lang-switch-button {
    background: transparent;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switch-button:hover {
    color: #80E6F2;
}

.lang-switch-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.current-lang {
    display: inline-block;
    min-width: 30px;
    text-align: center;
}
