.lang-switcher {
    display: flex;
    align-items: center;
    margin-left: 15px;
    gap: 5px;
    flex-wrap: wrap;
}

.lang-switch-btn {
    display: flex;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    background: transparent;
    transition: all 0.3s ease;
    min-width: 60px;
    justify-content: center;
}

.lang-switch-btn:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.lang-switch-btn.active {
    background: #f91418;
    color: white;
    border-color: #f91418;
}

.lang-switch-btn img {
    width: 20px;
    height: 15px;
    margin-right: 4px;
}

/* Mobile styles */
@media (max-width: 549px) {
    .lang-switcher {
        margin: 10px 0;
        justify-content: center;
        width: 100%;
    }
    
    .mobile-nav .lang-switcher {
        justify-content: center;
    }
} 