/* Ported from production: MUI CssBaseline box model + body reset (styles/mui/overrides/components/CssBaseLine.ts) */
html {
  box-sizing: border-box;
  -webkit-print-color-scheme: light;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

strong,
b {
  font-weight: 700;
}

/* MUI CssBaseline body — line-height 1.5; background comes from assets/global.css (#f8f8f7) */
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

@media print {
  body {
    background-color: #ffffff;
  }
}

body::backdrop {
  background-color: #fafafa;
}

