/*
 * Moodle brand orange (#f98012), per Moodle's Global Brand Guidelines.
 * Moodle's own guidelines note that white-on-orange and orange-on-white
 * both fail WCAG AA contrast, so header/nav text uses Moodle Black
 * (#282828) instead of the Material default white, matching how Moodle's
 * own brand materials pair orange buttons with dark text.
 */
[data-md-color-primary="custom"] {
  --md-primary-fg-color: #f98012;
  --md-primary-fg-color--light: #ffa64d;
  --md-primary-fg-color--dark: #c96700;
  --md-primary-bg-color: #282828;
  --md-primary-bg-color--light: #282828;
}

[data-md-color-accent="custom"] {
  --md-accent-fg-color: #f98012;
  --md-accent-fg-color--transparent: #f980121a;
  --md-accent-bg-color: #282828;
}

.md-typeset .admonition.warning {
  border-color: #ff9800;
}

.md-typeset .admonition.danger {
  border-color: #f44336;
}

/* Code styling improvements */
.md-typeset code {
  font-size: 0.85em;
}

/* Badge styles */
.md-typeset .badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
