/*
 * Keystone documentation — custom styles.
 *
 * Full-width reference tables. Several operator-facing reference tables (the
 * query filter operators, the settings catalogues) are wide; these rules let
 * them use the available width and keep single-value cells from wrapping.
 */

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

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

table {
  table-layout: auto;
}

td {
  white-space: nowrap;
}

td:last-child {
  white-space: normal;
  width: auto;
}
