/* ── Pilot bridge (Customers UX-port) ─────────────────────────────────────────
   The kit is scoped to `.ds-view`. A handful of the live app's GLOBAL class rules
   (in index.html's inline <style>) still match kit markup inside that scope and
   leak properties the kit deliberately doesn't declare. This file neutralizes
   those specific leaks. It is a temporary bridge — delete it once the whole app
   adopts the kit and the legacy inline <style> is retired.

   Loaded AFTER components.scoped.css so these overrides win. */

/* Live `.modal { padding:20px; overflow-y:auto }` leaks onto the kit modal, which
   instead pads its __head/__body/__foot and scrolls only the body. Reset it. */
.ds-view .modal { padding: 0; overflow: visible; }
