/* Minimal global stylesheet to satisfy the link in root.tsx
   Add your full site styles here (previously at app/styles/global.css).
*/
:root {
  --body-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --brand-color: #0a7a34;
}
html,
body,
#root {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  color: #222;
  background: #fff;
}
a {
  color: var(--brand-color);
}

/* Basic helper for the consent modal to inherit a decent font */
.mg-consent-panel {
  font-family: var(--body-font);
}
