.md-typeset .admonition,
.md-typeset details {
  border-width: 0;
  border-left-width: 4px;
}

.md-typeset h1, .md-typeset h2 {
  font-weight: 400;
}

.md-typeset .doc-children {
  font-size: 0.7rem;
}

/* Wrap long functions */
.md-typeset {
  overflow-x: auto;
  column-width: 1800px;
}

/* name of a method */
code.highlight span.n:first-child {
  color: red;
}
code.highlight span.n:not(:first-child) {
  color: #666;
}

/* Indentation. */
div.doc-contents:not(.first) {
  padding-left: 25px;
  border-left: 0.05rem solid var(--md-typeset-table-color);
}

/* Mark external links as such. */
a.autorefs-external::after {
  /* https://primer.style/octicons/arrow-up-right-24 */
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="rgb(0, 0, 0)" d="M18.25 15.5a.75.75 0 00.75-.75v-9a.75.75 0 00-.75-.75h-9a.75.75 0 000 1.5h7.19L6.22 16.72a.75.75 0 101.06 1.06L17.5 7.56v7.19c0 .414.336.75.75.75z"></path></svg>');
  content: " ";

  display: inline-block;
  position: relative;
  top: 0.1em;
  margin-left: 0.2em;
  margin-right: 0.1em;

  height: 1em;
  width: 1em;
  border-radius: 100%;
  background-color: var(--md-typeset-a-color);
}
a.autorefs-external:hover::after {
  background-color: var(--md-accent-fg-color);
}


/* Remove In [] from jupyter notebook */
.jupyter-wrapper .jp-CodeCell .jp-Cell-inputWrapper .jp-InputPrompt,
.jupyter-wrapper .jp-CodeCell .jp-Cell-outputWrapper .jp-OutputPrompt {
  display: none !important;
}

.jupyter-wrapper .jp-CodeCell .jp-Cell-outputWrapper .jp-RenderedText[data-mime-type="application/vnd.jupyter.stderr"] {
  display: none !important;
}

.jupyter-wrapper .jp-Cell-inputWrapper {
  padding-bottom: 1rem !important;
}
