.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.language-switcher button {
    margin: 0 5px;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.language-switcher button:hover {
    background: #3b82f6;
    color: white;
}

.language-switcher button.active {
    background: #3b82f6;
    color: white;
}

.fade-transition {
    transition: opacity 0.3s ease;
}

.fade-out {
    opacity: 0;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .language-switcher button {
        padding: 6px 12px;
        font-size: 12px;
        margin: 0 2px;
    }
}