/* Gradient Tools brand accent (#FF9E1A) for Material for MkDocs */
:root {
  --md-primary-fg-color:        #FF9E1A;
  --md-primary-fg-color--light: #FFB454;
  --md-primary-fg-color--dark:  #E07E00;
  --md-accent-fg-color:         #FF9E1A;
}
[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #FF9E1A;
  --md-accent-fg-color:  #FF9E1A;
  --md-default-bg-color: #14161B;   /* match the add-on / marketing dark */
}

/* Make the top tabs/header text readable on the orange primary in light mode */
.md-header { color: #1b1b1b; }
[data-md-color-scheme="slate"] .md-header { color: #EDEFF3; }

/* Rounded, framed images so screenshots sit nicely on the page */
.md-typeset img {
  border-radius: 8px;
  display: block;
  margin-inline: auto;   /* center standalone screenshots & figures */
  max-width: 100%;       /* never overflow the content column */
  height: auto;
}

/* A little more breathing room around figures */
.md-typeset figure { margin: 1.4em 0; }
.md-typeset figcaption { color: var(--md-default-fg-color--light); font-size: .8rem; }
