Style and style related not changing

No matter what I change my theme .css to, it always uses the basic theme. I am using the latest 4.1.7 build.

<link rel="stylesheet" href="_content/Radzen.Blazor/css/default-base.css">  //original
<link rel="stylesheet" href="_content/Radzen.Blazor/css/dark.css"> //changed to

I have also noticed that my buttons do not respond to the new built in properties such as follows:

<RadzenButton Icon="add_circle_outline" Shade="Shade.Lighter" ButtonStyle="ButtonStyle.Info" style="margin-left: 50px;" Text="New Project" Click="@InsertRow" />

Hi @Matthew_Cuda,

You should include only one theme at a time. Also check if the theme CSS file loads as expected. Use your browser's developer tools to verify that - inspect the HTTP requests from the network tab.

Weird, as soon as went into the network tab, the theme was applied, but only live. Then went in and cleared the browser cache (which I did before) and it started working. Somehow the cache was not getting cleared, but the network tab forced it to work.