/* OtServer-specific global CSS. Framework-wide rules (MudDrawer overlay suppression at
   ≥960px, perspective-detail-drawer width, etc.) ship with the Hvtk.Framework.Web RCL at
   _content/Hvtk.Framework.Web/Hvtk.Framework.Web.css — linked from App.razor.

   Per-perspective / per-widget styles live alongside their .razor components via scoped CSS
   (.razor.css). Only genuinely global rules belong here. */

/* Drop-target highlight for kit drag-drop into the BOM tree. Applied by
   wwwroot/dragdrop.js on dragover, removed on dragleave/drop. Kept global
   because the class is toggled by JS and must win against scoped CSS. */
.ot-drop-hover {
    outline: 2px dashed var(--mud-palette-primary);
    outline-offset: -2px;
    background-color: var(--mud-palette-primary-hover);
}
