/* Magnet Studio M21 — remove the legacy warm root canvas above the floating header. */

:root,
html {
  min-height:100%;
  margin:0;
  background:#f4f6f9!important;
  background-image:none!important;
}

body {
  min-height:100%;
  margin:0!important;
}

#root,
.ms-app {
  min-height:100%;
}

/* The floating header intentionally has a top margin. `overflow:clip` alone does
   not establish a block formatting context in every browser, so the margin could
   collapse through the app and expose the old :root paper colour. */
.ms-app {
  display:flow-root;
}

@supports (min-height:100svh) {
  #root,
  .ms-app { min-height:100svh; }
}
