:root {
    --md-primary-fg-color:        #F5731E;
    --md-primary-fg-color--light: #ECB7B7;
    --md-primary-fg-color--dark:  #505050;
    --md-accent-fg-color:  #FA8C1E;
  }

h3 {
  clear: both;
}

/*
  Auto-width the first and last table columns by preventing wrapping.
  The last column is excluded from this rule in 2-column tables (:not(:nth-child(2))),
  because in those tables the last column is typically a description and should be allowed to wrap.
  word-break: normal overrides MkDocs Material's default word-break: break-all,
  which would otherwise break long words (e.g. 'timestamp') mid-word.
*/
.md-typeset table td:first-child,
.md-typeset table th:first-child,
.md-typeset table td:last-child:not(:nth-child(2)),
.md-typeset table th:last-child:not(:nth-child(2)) {
  white-space: nowrap;
  word-break: normal;
}