DataGridColumn MinWidth Firefox

Hello,
the MinWidth property of the RadzenDataGridColumn seems to have no effect when using the Firefox-Browser. In Crome/Edge it works how expected. I built a simple example to demonstrate the problem:

<RadzenDataGrid TItem="Author" Data="AuthorList">
    <Columns>
        <RadzenDataGridColumn TItem="Author" Property="Name" Title="Name" MinWidth="200px"/>
        <RadzenDataGridColumn TItem="Author" Property="Age" Title="Age" Width="200px"/>
        <RadzenDataGridColumn TItem="Author" Property="BookTitle" Title="BookTitle" Width="200px" />
        <RadzenDataGridColumn TItem="Author" Property="IsMVP" Title="IsMVP"  Width="200px"/>
        <RadzenDataGridColumn TItem="Author" Property="PublishedDate" Title="PublishedDate" Width="200px" />
    </Columns>
</RadzenDataGrid>

Before browser window resizing:

After browser window resizing:

Firefox version is 114.0.1 (64-bit), but i have had this problem for a while.

Were you able to fix that problem? Because I have the same issue, only on Firefox. On Chrome/Edge the DataGrid becomes horizontally scrollable to respect the MinWidth values, but on Firefox it shrinks all columns to fit in the current view, not respecting the MinWidth values at all (even though I can see the attribute is set on the columns, so probably another thing’s the actual reason).