/* Overrides for things which can't be customized via html_theme_options in conf.py. */

/* Disable font size increase on large screens
   (https://github.com/pradyunsg/furo/blob/2020.12.30.beta24/src/furo/assets/styles/_scaffold.sass#L222). */
html {
    font-size: 100% !important;
}

/* This button gets in the way (https://github.com/pradyunsg/furo/discussions/435). */
.show-back-to-top .back-to-top {
    display: none;
}

/* Prevent descenders being cut off in search box
   (https://github.com/necolas/normalize.css/issues/778). */
input {
    line-height: normal;
}

/* Make index TOC section headings look the same as <h2>. */
.toctree-wrapper.compound .caption {
    font-size: 2em;
    font-weight: 700;
    text-transform: none;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

/* Draw lines around table edges. */
table.docutils {
    border: 1px solid var(--color-background-border);
}

/* Remove "Made with Furo" */
.bottom-of-page .left-details {
    display: none;
}
