.limited-width-table {
    width: 50%;
    overflow-x: auto;
}

.wy-nav-content {
    max-width: 100% !important;
}

.math {
  font-size: large;
}

/* Add vertical spacing between documented functions */
.doc.doc-object.doc-function {
  margin-top: 1.5em;
}


/* This CSS is used to format tables with a fixed width and wrapped text */
/* Tables must be inside a div with the class "wrapped-table" and in HTML format */
.wrapped-table table {
  table-layout: fixed !important;
  width: 100% !important;
}

/* Center the first column */
.wrapped-table td:first-child,
.wrapped-table th:first-child {
  text-align: center;
  vertical-align: middle;
}

/* Wrap the 2nd column */
.wrapped-table td:nth-child(2),
.wrapped-table th:nth-child(2) {
  white-space: normal !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* Set the width of the second column to 600px
.wrapped-table td:nth-child(2),
.wrapped-table th:nth-child(2) {
  width: 600px !important;
  max-width: 600px !important;
}*/