You need to pass the child elements as a single list or a tuple instead of separate positional arguments.
Change this:
Body(title, SimSetup, Header, Status, style="margin:20px; width: 1500px")
to:
Body([title, SimSetup, Header, Status], style="margin:20px; width: 1500px")