/* Custom theme colors matched to the project logo:
   - Blue gear:     #3D7ABF (primary)
   - Orange circle: #E8943A (accent)
   - Green shield:  #4CAF50 (success indicators)
*/

/* Light mode */
[data-md-color-scheme="default"] {
  --md-primary-fg-color: #3D7ABF;
  --md-primary-fg-color--light: #5A9AD6;
  --md-primary-fg-color--dark: #2C5F99;
  --md-accent-fg-color: #E8943A;
  --md-accent-fg-color--transparent: rgba(232, 148, 58, 0.1);
}

/* Dark mode */
[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #5A9AD6;
  --md-primary-fg-color--light: #7AB4E8;
  --md-primary-fg-color--dark: #3D7ABF;
  --md-accent-fg-color: #F0A854;
  --md-accent-fg-color--transparent: rgba(240, 168, 84, 0.1);
}

/* Navigation tabs use the blue from the gear */
.md-tabs {
  background-color: var(--md-primary-fg-color--dark);
}

/* Admonition success boxes use the green from the shield */
.md-typeset .admonition.success,
.md-typeset details.success {
  border-color: #4CAF50;
}
