/* Palette A: slate steel.
   Overrides are scoped to Material's [data-md-color-*] attribute selectors
   (which live on <body>), not :root — a :root declaration is shadowed by
   Material's own body-level custom properties regardless of load order. */

[data-md-color-primary='blue-grey'] {
  --md-primary-fg-color: #37474f;
  --md-primary-fg-color--light: #546e7a;
  --md-primary-fg-color--dark: #263238;
}

/* Light-mode accent; the slate block below re-overrides it for dark mode. */
[data-md-color-accent='amber'] {
  --md-accent-fg-color: #b26a00;
}

[data-md-color-scheme='slate'] {
  --md-accent-fg-color: #fac775;
  --md-default-bg-color: #12181b;
}

/* Signature maroon inline code, carried over from the whitepaper styling */
[data-md-color-scheme='default'] .md-typeset code:not(pre code) {
  color: #800000;
}

[data-md-color-scheme='slate'] .md-typeset code:not(pre code) {
  color: #f0997b;
}

/* Slightly wider content column for code-heavy appendices */
.md-grid {
  max-width: 74rem;
}
