/* Warden brand accents for the mdBook theme, tuned for the light theme. */
:root {
  --warden-gold: #b8860b; /* darker gold — readable on a light background */
}

.menu-title {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* The three decisions, used across the guides as `code.allow/deny/hold`.
   Colours chosen to stay legible on the light background. */
.content code.allow { color: #0a7d33; } /* green  */
.content code.deny  { color: #c0392b; } /* red    */
.content code.hold  { color: #b8860b; } /* amber  */

/* Callout blocks: > **Note:** / > **Warning:** */
blockquote {
  border-inline-start: 3px solid var(--warden-gold);
}

/* Tighten wide tables so they scroll rather than overflow the page. */
.content table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}
