html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope Variable', Manrope, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  /* Neutral boot colours (theme-agnostic) so there is no flash of the wrong palette
     before React mounts; the MUI theme paints the real background right after. */
  background: #f4f5f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #111418;
  }
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media print {
  * {
    height: auto !important;
    overflow: visible !important;
  }
}
