/* Language Switcher Styles */
.lang-switcher {
    display: flex;
    gap: 4px;
    margin-right: 16px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.lang-btn.active {
    background: #1e40af;
    border-color: #1e40af;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 8px;
    }
    
    .lang-btn {
        padding: 3px 6px;
        font-size: 11px;
    }
}
