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

.language-switcher button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
    background-color: rgba(255, 206, 108, 0.45);
    border-radius: 4px;
}

.language-switcher button:hover {
    background-color: rgba(255, 206, 108, 0.9);
}

.language-switcher button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 206, 108, 0.9);
}

.language-switcher .lang-active {
    background-color: rgba(255, 206, 108, 0.9);
}

.language-switcher .lang-active:hover {
    background-color: rgba(255, 206, 108, 1);
}
