Difference in CSS / rendering between Radzen and Visual Studio

I've had Radzen Blazor Studio generate the CRUD pages for my app, and I have a simple datagrid that upon clicking, displays a form.

The form is around 600px wide.

I wanted to approximately double the width, so I set the ".rz-dialog" to:

min-width:1200px

This seems to work great when I run my App from Radzen Blazor Studio, however when I run it from Visual Studio Community 2022, the change doesn't seem to have any affect and my form is still 600px.

Am I updating the width setting in the wrong place?

Most probably something was cached. Try CTRL-F5 when you run from Visual Studio.

Thanks for the reply, that was it and it's now working. Thanks again!