/* Fix: table pre { word-break: break-word !important } in all.min.css
   was causing 2-digit line numbers to wrap character by character.
   Load order: this file is after all.min.css, so same-specificity !important wins. */
.highlight td.gutter {
  min-width: 2.5em;
}

.highlight td.gutter pre,
.highlight td.gutter .line {
  white-space: pre !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
