
.md-typeset .admonition.download,
.md-typeset details.download {
  border-color: rgba(35, 55, 143, 0.5);
}
.md-typeset .download > .admonition-title,
.md-typeset .download > summary {
  background-color: rgba(43, 92, 155, 0.1);
}
.md-typeset .download > .admonition-title::before,
.md-typeset .download > summary::before {
  background-color: rgb(127, 140, 255);
  -webkit-mask-image: var(--md-admonition-icon--download);
          mask-image: var(--md-admonition-icon--download);
}

.md-typeset .admonition.xdc,
.md-typeset details.xdc {
  border-color: rgba(35, 55, 143, 0.5);
}
.md-typeset .xdc > .admonition-title,
.md-typeset .xdc > summary {
  background-color: rgba(43, 92, 155, 0.1);
}
.md-typeset .xdc > .admonition-title::before,
.md-typeset .xdc > summary::before {
  background-color: rgb(255, 177, 88);
  -webkit-mask-image: var(--md-admonition-icon--xdc);
          mask-image: var(--md-admonition-icon--xdc);
}



.md-typeset .admonition.jupyter,
.md-typeset details.jupyter {
  border-color: rgba(35, 55, 143, 0.5);
}
.md-typeset .jupyter > .admonition-title,
.md-typeset .jupyter > summary {
  background-color: rgba(43, 92, 155, 0.1);
}
.md-typeset .jupyter > .admonition-title::before,
.md-typeset .jupyter > summary::before {
  background-color: #f37726;
  -webkit-mask-image: var(--md-admonition-icon--jupyter);
          mask-image: var(--md-admonition-icon--jupyter);
}

.md-typeset .admonition.terminal,
.md-typeset details.terminal {
  border-color: rgba(35, 55, 143, 0.5);
}
.md-typeset .terminal > .admonition-title,
.md-typeset .terminal > summary {
  background-color: rgba(43, 92, 155, 0.1);
}
.md-typeset .terminal > .admonition-title::before,
.md-typeset .terminal > summary::before {
  background-color: #7c7981;
  -webkit-mask-image: var(--md-admonition-icon--terminal);
          mask-image: var(--md-admonition-icon--terminal);
}



th, td {
    border: 1px solid var(--md-typeset-table-color);
    border-spacing: 0;
    border-bottom: none;
    border-left: none;
    border-top: none;
}

.md-typeset__table {
    line-height: 1;
}

.md-typeset__table table:not([class]) {
    font-size: .74rem;
    border-right: none;
}

.md-typeset__table table:not([class]) td,
.md-typeset__table table:not([class]) th {
    padding: 9px;
}

/* light mode alternating table bg colors */
.md-typeset__table tr:nth-child(2n) {
    background-color: #f8f8f8;
}

/* dark mode alternating table bg colors */
[data-md-color-scheme="slate"] .md-typeset__table tr:nth-child(2n) {
    background-color: hsla(var(--md-hue),25%,25%,1)
}

