/* Prevent word-breaking in the first column of tables (field/parameter names).
   Long entries like wallet_provisioning_status may still wrap at the hyphen. */
.md-typeset table th:first-child,
.md-typeset table td:first-child {
  white-space: nowrap;
}

/* Dark mode: deep background and high-contrast text */
[data-md-color-scheme="slate"] {
  --md-default-bg-color: #121212;
  --md-default-bg-color--light: #1a1a1a;
  --md-default-bg-color--lighter: #222222;
  --md-default-bg-color--lightest: #2a2a2a;
  --md-default-fg-color: hsla(0, 0%, 100%, 0.87);
  --md-default-fg-color--light: hsla(0, 0%, 100%, 0.62);
  --md-default-fg-color--lighter: hsla(0, 0%, 100%, 0.44);
  --md-default-fg-color--lightest: hsla(0, 0%, 100%, 0.12);
  --md-code-bg-color: #1e1e1e;
}
