/* Armbian brand colors matching armbian.com */
:root {
  --md-primary-fg-color: #F26522;
  --md-primary-fg-color--light: #FF8B1A;
  --md-primary-fg-color--dark: #DC5819;
  --md-accent-fg-color: #F26522;
  --md-accent-fg-color--transparent: #F2652218;
}

[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #F26522;
  --md-primary-fg-color--light: #FF8B1A;
  --md-primary-fg-color--dark: #DC5819;
  --md-accent-fg-color: #F26522;
  --md-accent-fg-color--transparent: #F2652218;
}

.md-typeset__table {
   min-width: 100%;
}

.md-typeset table:not([class]) {
    display: table;
}

/* Prevent the first column of schema/reference tables from wrapping
 * mid-identifier. Identifiers like 'display_manager' or 'gnome-control-center'
 * are common in the developer-guide tables and look terrible when broken
 * across lines (e.g. 'display_manage' / 'r').
 * Scope to <code> in the first cell so prose tables are unaffected.
 */
.md-typeset table:not([class]) td:first-child code,
.md-typeset table:not([class]) th:first-child code {
    white-space: nowrap;
}

/* Style for only specially tagged bash blocks */
pre.custom-bash-block, code.custom-bash-block {
  font-size: 24pt;
}

@media (max-width: 768px) {
  pre.custom-bash-block, code.custom-bash-block {
    font-size: 14pt; /* smaller size for tablets/phones */
  }
}

@media (max-width: 480px) {
  pre.custom-bash-block, code.custom-bash-block {
    font-size: 12pt; /* even smaller for small phones */
  }
}
