/*
  Extend Zensical's default layout from a fixed max-width container to a
  viewport-wide container so API documentation can use the full browser width.
*/
.md-grid {
  max-width: 100%;
  width: 100%;
}

/*
  Keep a small readable gutter on wide screens after removing the default
  width cap so content does not touch the window edge.
*/
@media screen and (min-width: 76.25em) {
  .md-main__inner {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
}
