/* Make all code blocks stretch to full width and allow horizontal scrolling */
.code, pre, .code-block, .theme-default-content pre, .theme-default-content code {
  width: 80vw !important;
  min-width: 80vw !important;
  max-width: 80vw !important;
  box-sizing: border-box;
  margin-left: calc(-50vw + 50%);
  padding: 16px;
  overflow-x: auto;
  display: block;
  white-space: pre;
}
