/* Customize theme font colors */
html[data-theme=light] {
  --pst-color-borders: rgb(206, 212, 218);
  --pst-color-primary: var(--pst-color-text-base);
  --pst-color-secondary: rgb(207, 70, 42);
  --pst-color-link: var(--pst-color-secondary);
  /* match color of "Tip" admonition to Bokeh color scheme */
  --pst-color-success: rgb(165, 205, 57);
  --pst-color-admonition-tip: var(--pst-color-success);
  --pst-color-inline-code: var(--pst-color-text-base);
}

/* activate the search box on the start page if the search button on the top banner is clicked */
.bd-search {}

/* make sure the article container uses all available space */
.bd-article-container {
  max-width: 100% !important;
}

/* disable this container to avoid unnecessary overflow */
#rtd-footer-container {
  display: none;
}

/* Tweak appearance of args in reference guide */
.class .sig, .function .sig, .sig .property {
  font-weight: 400;
}

/* Tweak borders for images (e.g. screenshots) */
img.image-border {
  border: 1px solid rgba(var(--pst-color-borders),1);
  margin-bottom: 1.15rem;
  border-radius: .2rem;
  box-shadow: 1px 1px 1px #d8d8d8;
}

/* Style card headers */
.sd-card-header {
  background-color: rgb(220, 220, 220) !important;
  font-weight: 700;
  font-size: 110%;
}
.sd-row{
    --sd-gutter-y: 1.5em;
}

/* Tweak sphinx-design cards */
.bokeh-examples div {
  padding: 0px;
  margin: 0px;
}
.bokeh-examples img {
  width: 100%;
  height: 100%;
}

/* Ligatures provide bad UX in some cases, just turn them off */
* {
  font-variant-ligatures: none;
}

/* make left sidebar title invisible */
.bd-links__title {
  display: none;
}

/* CSS for our custom footer */
.bd-footer {
  padding: 0 !important;
}
.bd-footer h6 {
  color: #fff;
  font-weight: bold;
  margin: 8px 0px;
}
.bd-footer .links {
  background-color: #542437;
  font-size: 0.9rem;
}
.bd-footer .links a {padding: 3px 0px;}
.bd-footer .links-item {
  margin: 0px;
  padding: 20px 15px;
}
.bd-footer .links h6 {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.bd-footer .links ul.nav li a {
  padding: 3px 0;
  font-size: 13px;
  color: #fff;
}
.bd-footer .copyright {
  background-color: #242729;
  font-size: 0.85rem;
  padding: 10px !important;
}
.bd-footer .copyright p {color: #eee;}
.bd-footer .btn-primary { filter: brightness(90%); background-color: #C02942; border-color: #C02942; }
.bd-footer .btn-primary:hover { filter: brightness(100%); background-color: #C02942; border-color: #C02942; }

/* CSS for our custom gallery */
div.bk-gallery {
    width: 100%;
    margin: 0px 0px 20px 0px;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

div.bk-thumbnail {
    background: transparent;
    border-radius: 7px;
    box-shadow: 0 0 3px #444;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

div.bk-thumbnail:hover {
    box-shadow: 0 0 5px #444;
}

div.bk-thumbnail-description {
    font-weight: lighter;
    font-size: 12px;
    text-align: justify;
    padding-left: 5px;
    padding-right: 5px;
}

div.bk-thumbnail-description p {
    font-size: 10px;
    text-align: left;
}

div.bk-gallery-tabs > label {
    font-size: 18px;
}

img.gallery {
  width: 200px;
  height:200px
}

/* Provide a compact jump table before the detailed model properties. */
table.bokeh-property-index {
  font-size: .9rem;
  margin: 0 0 2rem 2rem;
  table-layout: fixed;
  width: calc(100% - 2rem);
}

table.bokeh-property-index caption {
  caption-side: top;
  color: var(--pst-color-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0 0 .5rem;
  text-align: left;
}

table.bokeh-property-index td {
  padding: .45rem .75rem;
}

table.bokeh-property-index tbody tr:nth-child(odd),
table.bokeh-property-index tbody tr:nth-child(even) {
  background-color: var(--pst-color-background);
}

table.bokeh-property-index td > p {
  margin: 0;
}

table.bokeh-property-index code {
  background: transparent;
  border: 0;
  font-size: inherit;
  padding: 0;
}

ul.bokeh-model-classes code {
  background: transparent;
  border: 0;
  font-size: inherit;
  padding: 0;
}

.bd-article dl.py.class:has(+ .pst-scrollable-table-container > table.bokeh-property-index) {
  margin-bottom: 1rem;
}

/* Present model members as content nested beneath the class definition. */
section#properties,
section#methods {
  margin-left: 2rem;
}

/* Use one lightweight member treatment across the Python reference docs. */
.bd-article dl.py:is(.attribute, .function, .method, .property) {
  margin: 1.25rem 0 2rem;
}

.bd-article dl.py:is(.attribute, .function, .method, .property) > dt.sig {
  background: var(--pst-color-surface);
  border-bottom: 1px solid var(--pst-color-border);
  margin: 0;
  padding: .65rem .75rem;
  position: relative;
}

.bd-article dl.py:is(.attribute, .function, .method, .property) > dt.sig:first-child {
  border-top: 1px solid var(--pst-color-border);
}

.bd-article dl.py:is(.attribute, .function, .method, .property) > dd {
  margin-left: .75rem;
  padding: .75rem 0 0;
}

.bd-article dl.py:is(.attribute, .function, .method, .property) > dt.sig:has(> a > .viewcode-link) {
  padding-right: 5rem;
}

.bd-article dl.py:is(.attribute, .function, .method, .property) > dt.sig > a:has(.viewcode-link) {
  float: none;
  font-size: .8rem;
  position: absolute;
  right: .75rem;
  top: .65rem;
}

/* Keep anchored section headings visible without highlighting their full width. */
.bd-main .bd-content .bd-article-container .bd-article section:target > :is(h1, h2, h3, h4, h5, h6) {
  background-color: transparent;
  border-left: .25rem solid var(--pst-color-target);
  margin-left: -.75rem;
  padding-left: .5rem;
}

section#properties > dl.py.attribute > dd > dl.field-list {
  align-items: center;
  border-bottom: 1px solid var(--pst-color-border-muted);
  display: grid;
  gap: .5rem;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  margin: 0 0 1rem;
  padding: 0 0 .75rem;
}

section#properties > dl.py.attribute > dd > dl.field-list > dt,
section#properties > dl.py.attribute > dd > dl.field-list > dd {
  background: transparent;
  margin: 0;
  padding: 0;
}

section#properties > dl.py.attribute > dd > dl.field-list > dt {
  color: var(--pst-color-text-muted);
  font-size: .875rem;
  font-weight: 700;
}

section#properties > dl.py.attribute > dd > dl.field-list > dd > :is(p, .line-block) {
  background: var(--pst-color-surface);
  border: 1px solid var(--pst-color-border);
  border-radius: .3rem;
  display: inline-block;
  font-family: var(--pst-font-family-monospace);
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
  padding: .1rem .4rem;
}

section#properties > dl.py.attribute > dd > dl.field-list > dd > .line-block {
  white-space: nowrap;
}

section#properties > dl.py.attribute > dd > dl.field-list > dd > :is(p, .line-block) code {
  background: transparent;
  border: 0;
  font-size: inherit;
  padding: 0;
}

/* Pandas dataframe css */
/* Source: https://github.com/spatialaudio/nbsphinx/blob/fb3ba670fc1ba5f54d4c487573dbc1b4ecf7e9ff/src/nbsphinx.py#L587-L619 */

.dataframe {
  max-width: 100%;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

table.dataframe {
  border: none !important;
  border-collapse: collapse;
  border-spacing: 0;
  border-color: transparent;
  color: black;
  font-size: 12px;
  table-layout: fixed;
}
table.dataframe thead {
  border-bottom: 1px solid black;
  vertical-align: bottom;
}
table.dataframe tr,
table.dataframe th,
table.dataframe td {
  text-align: right;
  vertical-align: middle;
  padding: 0.5em 0.5em;
  line-height: normal;
  white-space: normal;
  max-width: none;
  border: none;
}
table.dataframe th {
  font-weight: bold;
}
table.dataframe tbody tr:nth-child(odd) {
  background: #f5f5f5;
}
table.dataframe tbody tr:hover {
  background: rgba(66, 165, 245, 0.2);
}
