DialogService.Alert message color does not apply theme swith

We're using the light/dark theme switcher in V.5. Whenever we call DialogService.Alert() the given message is rendered dark in dark mode.
As a result, the text is not readable on dark backround color.
The title does use light color in dark mode as expected.

Tested with Radzen.Blazor 5.1.7

Seems to work fine in our online demos:

alert

You should probably use RadzenLayout as it specifies rules for changing the global text color in dark mode. Just put it in your MainLayout.razor file to wrap all content.

Did add RadzenLayout wrapper. Did work and solve some other font issues as well!

Little follow up problem:
When I do use the Radzenlayout wrapper and page content is larger (vertical size) as visible browser view, no vertical scrollbars are shown anylonger. Without wrapper they do.
How can I enable vertical scrollbars (on demand) using the RadzenLayout wrapper?

..and the wrapped page content isn't responsive any longer....

Try adding RadzenBody immediately inside RadzenLayout. Something like this:

<RadzenLayout>
<RadzenBody>
   Other content
</RadzenBody>
</RadzenLayout>

addtl. RadzenBody did solve most issues....