/* Fitz LiveViews — custom palette matching Fitz core (Rust orange). */
:root {
  --md-primary-fg-color: #CE412B;
  --md-primary-fg-color--light: #E0503B;
  --md-primary-fg-color--dark: #A83321;
  --md-accent-fg-color: #CE412B;
  --md-accent-fg-color--transparent: rgba(206, 65, 43, 0.1);
}

[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #CE412B;
  --md-primary-fg-color--light: #E0503B;
  --md-primary-fg-color--dark: #A83321;
  --md-accent-fg-color: #E86A56;
}

/* Header logo — doubled (was 2rem) so the brand mark reads large in the
   header. The header row grows to fit the taller logo via the min-height
   below; width auto keeps the square aspect. */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  height: 4rem;
  width: auto;
}
.md-header__inner {
  min-height: 4.4rem;
}
