/* ============================================================
   TOOL SHELL — light wrapper adjustments for the standalone
   clinical tools. They share the site nav + footer but keep the
   NATIVE cursor (better for their search/filter inputs) and their
   own internal styling (scoped under .tool-app).
   Loaded AFTER the scoped tool CSS so these overrides win.
   ============================================================ */

/* Restore the native cursor (global.css hides it for the custom cursor,
   which we deliberately don't load on the tools). */
body { cursor: auto; }

/* Clear the fixed 92px nav and ensure the tool fills the viewport. */
.tool-app {
  min-height: 100vh;
  padding-top: 104px;
}

/* Print: drop the site chrome so the tool's own print layout is clean. */
@media print {
  nav, footer { display: none !important; }
  .tool-app { padding-top: 0; }
}
