/* Swaps the Fluent theme's default system font stack (Segoe UI on Windows)
   for Inter -- loaded via Google Fonts link in _Host.cshtml. --dxds-font-family-sans-serif
   is the one semantic CSS variable every DevExpress Blazor Fluent component
   references for body/UI text, so overriding it here re-themes the whole
   app consistently instead of patching individual components. Registered
   against the Fluent theme group only (ThemeSwitcher:CustomUrls in
   appsettings.json), so switching to a Classic theme is unaffected. */
:root {
    --dxds-font-family-sans-serif: 'Inter', segoe ui, -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}
