/*
 * AIMET color palette
 */
:root {
    --aimet-blue: #3253dc;
    --aimet-dark-blue: #0000ff;
    --aimet-white: #ffffff;
    --aimet-border-grey: #e0e0e0;
    --aimet-menu-hover: #e3efff;
    --aimet-menu-font-active: #0058ff;
    --aimet-code-grey: #fafafa;
    --aimet-code-grey-dark: #535353;
    --aimet-light-blue: #e7f2fa;
  }
  
 aside.toc-drawer ul ul ul ul {
   display: none;
}

/* Hide level 3 entries */
.toctree-l3 {
    display: none;
}

/* Hide collapse arrow on level 2 entries */
li.toctree-l2 [for^="toctree-checkbox-"] {
    visibility: hidden;
}

/*
 * Configure the appearance of code output box.
 * Values are based on sphinx-gallery configuration
*/
.script-output {
    color: black;
    display: flex;
    gap: 0.5em;
}

.script-output::before {
    content: "Out:";
    line-height: 1.4;
    padding-top: 10px;
}

body[data-theme="dark"] .script-output::before {
    color: var(--aimet-white);
}

.script-output .highlight {
    background: transparent;
    flex-grow: 1;
    overflow: auto;
    /* Allow output block to take up maximum 25 lines */
    max-height: 25em;
}

/* Change the code backgorund in light and default mode */ 
:not(body[data-theme="dark"]) *.highlight pre, :not(body[data-theme="dark"]) pre.literal-block { 
    background-color: var(--aimet-code-grey);
}

/* Change the code backgorund in dark mode */ 
body[data-theme="dark"] *.highlight pre, body[data-theme="dark"] pre.literal-block { 
    background-color: var(--aimet-code-grey-dark);
}


/*
 * Glossary formatting
*/
[id^="term-"] {
    font-weight: bold;
}

/*
 * Heading formatting
 */

h1 {
    font-size:2.5em;
    margin-top:1.75rem;
    margin-bottom:1rem;
}

h2 {
    font-size:2em;
    margin-top:1.75rem;
    margin-bottom:1.25rem;
    font-weight: normal;
}
    
h3 {
    font-size:1.5em;
    margin-top:1.25rem;
    margin-bottom:1.25rem;
    font-weight: normal;
}
    
h4 {
    font-size:1.25em;
    margin-top:1.25rem;
    margin-bottom:1.25rem;
    font-weight: normal;
}

h5 {
    font-size:1.125em;
    margin-top:1.25rem;
    margin-bottom:1.25rem;
    font-weight: normal;
} 