.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-switcher button {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switcher button:hover {
    background: #3498db;
    color: #fff;
}

.lang-switcher button.active {
    background: #3498db;
    color: white;
}
