body {
    background-color: rgb(10, 10, 10);
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#mobile_side_nav {
    height: 100%;
    width: 0%;
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
}

.mobile_side_nav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.header {
    text-align: left; 
    padding: 5px;
    font-size: 80%;
    padding-left: 2%;
    background-color: rgb(20, 20, 20);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.animated-gradient {
    font-weight: bold;
    background: linear-gradient(to right, rgb(255, 140, 0),  rgb(255, 179, 71), rgb(227, 100, 20), rgb(255, 69, 0));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradientAnimation 1s linear infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.mainContent {
    width: 100%;
    min-height: 300px;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    padding: 1%;
}

.sideBar, .mainSection {
    text-align: left;
    padding: 10px;
    background-color: rgba(29, 29, 29, 0.385);
    border-radius: 20px;
    box-sizing: border-box;
    min-height: 550px;
}

.sideBar {
    width: 20%;
}

.mainSection {
    width: 100%;
    overflow-y: scroll;
    padding: 10px;
    height: 550px;
}

.mainSection::-webkit-scrollbar {
    background-color: rgba(29, 29, 29, 0.385);
}

.mainSection::-webkit-scrollbar-thumb {
    background-color: rgb(45, 44, 44);
    border-radius: 20px;
    cursor: pointer;
}

code[class*=language-],pre[class*=language-] {
    color: #54b8ff;
    background: 0 0;
    text-shadow: 0 1px #ffffff00;
    font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
    font-size: 1em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 2;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection {
    text-shadow: none;
    background: #b3d4fc00
}

code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection {
    text-shadow: none;
    background: #b3d4fc00
}

@media print {
    code[class*=language-],pre[class*=language-] {
        text-shadow: none;
    }
}

pre[class*=language-] {
    padding: 1em;
    margin: .5em 0;
    overflow: auto
}

:not(pre)>code[class*=language-],pre[class*=language-] {
    background: #f5f2f000
}

:not(pre)>code[class*=language-] {
    padding: .1em;
    border-radius: .3em;
    white-space: normal
}

.token.cdata,.token.comment,.token.doctype,.token.prolog {
    color: #708090
}

.token.punctuation {
    color: #ffffff
}

.token.namespace {
    opacity: .7
}

.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag {
    color: rgb(202, 202, 202)
}

.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string {
    color: rgb(251, 103, 110)
}

.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url {
    color: #9a6e3a;
    background: hsla(205, 100%, 50%, 0)
}

.token.atrule,.token.attr-value,.token.keyword {
    color: rgb(118, 118, 247);
}

.token.class-name,.token.function {
    color: rgb(255, 213, 135);
}

.token.important,.token.regex,.token.variable {
    color: #e90
}

.token.bold,.token.important {
    font-weight: 700
}

.token.italic {
    font-style: italic
}

.token.entity {
    cursor: help
}

.gettingStarted, .callableFunctions, .data_processing, .ANN, .loading, .evaluation-metrics {
    width: 100%; 
    height: auto; 
    box-sizing: border-box; 
    text-align: left;  
    padding: 10px;
}

footer {
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.pageNote{
    margin: 1%;
    padding: 20px;
    text-align: left;
    background-color: rgba(40, 39, 39, 0.14);
    border-radius: 20px;
    height: auto;
}

.examples {
    margin: 1%;
    text-align: left;
    background-color: rgba(40, 39, 39, 0.14);
    border-radius: 20px;
    height: auto;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.collapsible {
    width: 100%;
    background-color: transparent;
    border: none;
    color: white;
    text-align: left;
    padding: 3%;
    font-size: 1.2rem;
    cursor: pointer;
}

.collapsible.active + .content {
  /* expanded state handled via JS setting max-height inline */
  max-height: 500px;
}
