.language-toggle {
    display: flex;
    border-radius: 50px;
    background: linear-gradient(145deg, #f0f0f0, #e6e6e6);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    position: relative;
    z-index: 2;
}

.lang-btn.active {
    background: linear-gradient(145deg, #007bff, #0056b3) !important;
    color: white !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.lang-btn:not(.active):hover {
    background: rgba(0,123,255,0.1) !important;
    color: #007bff !important;
    transform: scale(1.02);
}

.language-toggle:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}