.multilingual-block {
    position: relative;
    margin-bottom: 20px;
    padding-top: 46px; /* Space for the switcher at the top only */
}

.multilingual-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.lang-toggle {
    padding: 4px 10px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-toggle:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.lang-toggle.active {
    background: #0073aa;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.3);
}

.lang-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(-5px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make it subtle - show on hover */
.multilingual-block .multilingual-switcher {
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.multilingual-block:hover .multilingual-switcher {
    opacity: 1;
}
