Write a function process_space_csv(csv_line) that takes a CSV string of planet names. The function should:
- Split the string on commas.
- Strip surrounding whitespace from each name.
- Ignore any empty entries.
- Convert each remaining name to title case (first letter capital, the rest lower).
- Return the cleaned names joined by a single space.
Examples
process_space_csv("earth, mars,Venus")returns"Earth Mars Venus".process_space_csv("pluto,,Mercury")returns"Pluto Mercury".