/* Phase 5 (brought forward): load the legacy avalon theme/layout into a lower
   cascade layer `avalon`, declared before `primereact`, so the PrimeReact 10
   lara theme (wrapped in @layer primereact) wins. App.scss stays unlayered and
   therefore still wins over both. Layout classes (.layout-*) are untouched by
   lara so the app shell remains.

   This lives in public/ (served as-is, not processed by Vite) so the @import
   layering is handled natively by the browser and avoids the
   vite-plugin-node-polyfills inject step choking on an inline-style proxy. */
@layer avalon, primereact;
@import url('/assets/theme/theme-blue.css') layer(avalon);
@import url('/assets/layout/css/layout-blue.css') layer(avalon);
