/* The FIRST stylesheet on the vitrine, and it declares nothing but an order.

   Cascade layer order is fixed by where a layer name first appears in the document, and blazorblueprint.css
   declares its own as `properties, theme, base, components, utilities, bb`, putting `bb` LAST, so every
   component rule in it would beat the Tailwind utility written at the call site. `Class="mt-4"` on a
   <BbCard> would silently lose.

   Naming the order here, before that sheet is parsed, seats `bb` below our components and utilities. Every
   name the two sheets use must appear, or the missing one is appended and lands last again. */
@layer properties, theme, base, bb, components, utilities;
