/* Tables: ensure they don't overflow */
.md-typeset table:not([class]) {
  font-size: 0.82rem;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.md-typeset table:not([class]) td,
.md-typeset table:not([class]) th {
  white-space: normal;
}

/* Unicode subscripts/superscripts: ensure consistent sizing */
.md-typeset sub, .md-typeset sup {
  font-size: 75%;
}

/* Search results: limit preview text height */
.md-search-result__article {
  max-height: 5rem;
  overflow: hidden;
}

.md-search-result__teaser {
  max-height: 2.4rem;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* Limit "more on this page" expanded results */
.md-search-result__list > li {
  max-height: 20rem;
  overflow: hidden;
}

/* Print styles */
@media print {
  .md-sidebar,
  .md-header,
  .md-footer,
  .md-tabs {
    display: none !important;
  }
  .md-content {
    margin: 0 !important;
    padding: 0 !important;
  }
}
