/* custom.css */
:root {
    --global-font-size: 13px;
    --global-line-height: 1.4em;
    --page-width: 80em;
    --primary-color: #8c9f87;
    --code-bg-color: #343b32;
}

hr {
    margin-top: 2em;
    margin-bottom: 1.5em;
}

pre {
    line-height: 1.5em;
    font-size: 12px;
    border: 1px solid #8c9f87;
}

ul {
    margin-top: 0
}

li {
    line-height: 1.5em;
}

.terminal h1 {
    font-size: 17px;
    padding-top: 2pt;
}

.terminal h3 {
    margin-bottom: 8pt;
    font-size: 14px;
    color: #ECDFCC;
}

.terminal code {
    padding: 1px 3px 1px 3px;
    color: #8c9f87;
    font-size: 10pt;
    font-weight: bold;
}

.terminal .logo {
    font-size: 10.5pt;
}

.terminal-menu ul {
    font-size: 10.5pt
}

.container {
    padding-bottom: 1.5em;
}

.function-name {
    font-weight: bold;
    color: #8c9f87;
}

.parentheses {
    color: #8c9f87;
}

.params {
    color: #ECDFCC;
    font-weight: bold;
}

.source-link {
    margin-top: -3.1em;
    margin-bottom: 1.5em;
    text-align: right;
    position: relative;
}

#api-func-name {
    margin-top: -5pt;
}

#api-param-desc {
    margin-left: 10pt;
    margin-top: -10pt;
    margin-bottom: 8pt;
    font-size: 10pt;
}

#api-param-desc.last {
    margin-bottom: 15pt;
}

#terminal-mkdocs-side-panel {
    top: 3em;
    position: sticky;
    overflow-y: scroll;
    max-height: 90vh;
    max-width: 90%;
}

#terminal-mkdocs-side-panel > nav > ul > li {
    line-height: 1.8em;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#terminal-mkdocs-side-panel::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#terminal-mkdocs-side-panel {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}