body {
    background-color: #fff;
    text-align: center;
    color: #fff;
}

.main h2 {
    color: #000;
    font-weight: bold;
}

p {
    overflow-wrap: break-word;
}

/*Page Headers*/
.page-header {
    background-color: #02572d;
    padding: 10px;
}

.page-header > h1 {
    margin-top: unset;
    font-weight: bold;
    text-decoration: underline;
}

/* Nav Bar */
#menu-toggle {
    display: none;
}

.sidenav {
    height: 100%;
    width: 20%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #02572d;
    overflow-x: hidden;
    padding-top: 20px;
    text-align: left;
}

.sidenav a {
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    margin: 20px auto;
    text-align: center;
}

.sidenav a:hover {
    color: #f1f1f1;
    text-decoration-line: underline;
}

.main {
    padding: 20px 2%;
    text-align: center;
}

h1 {
    margin-top: 10px;
}

h2 {
    font-weight: normal;
}

h4 {
    margin-top: 10px;
}

a {
    color: #fff;
    text-decoration-line: none;
    overflow-wrap: break-word
}

a:hover {
    text-decoration-line: underline;
    color: #fff;
}

.active {
    font-weight: bold;

}

/*Hamburger Nav*/
@media only screen and (max-width: 1022px) {
    .sidenav {
        display: none;
    }

    .page-header {
        background-color: #02572d;
    }

    .page-header > h1 {
        margin-left: unset;
        text-decoration: none;
        font-weight: normal;
    }

    h2 {
        font-weight: bold;
    }

    .main {
        margin-left: unset;
    }

    #menu-toggle {
        width: 100%;
        display: block;
        position: absolute;
        z-index: 1;
        padding: 10px;
        top: 10px;
    }

    #menu-toggle a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s ease;
        margin-top: 20px;
        font-size: 30px;
    }

    #menu-toggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
    }

    #menu-toggle span  {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #fff;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        opacity 0.55s ease;
    }

    #menu-toggle span:first-child {
        transform-origin: 0 0;
    }

    #menu-toggle span:nth-last-child(2) {
        transform-origin: 0 100%;
    }

    #menu-toggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #fff;
    }

    #menu-toggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menu-toggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    #menu {
        position: absolute;
        width: 100%;
        margin: -166px 0 0 -10px;
        padding: 125px 50px 50px;
        background: #5b0d28;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0 0;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        display: grid;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 22px;
    }

    .active {
        font-size: 25px;
    }

    #menu-toggle input:checked ~ ul {
        transform: none;
    }
}

/* Collapsables */
.collapsible,.uncollapsed-section {
    background-color: #46010c;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 20px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
}

.uncollapsed-section {
    background-color: #46010c;
}

.collapsible:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.uncollapsed {
    margin-top: 20px;
    margin-bottom: 0;
}

.content, .uncollapsed-section-content {
    padding: 20px 18px;
    display: none;
    overflow: hidden;
    background-color: #2b2f34;
    margin-bottom: 20px;
    border-radius: 5px;
    margin-top: -5px;
}

.uncollapsed-section-content {
    margin-top: -25px;
    display: block;
}

.sub-collapsible {
    background-color: #5b0d28 !important
}
.sub-collapsible:hover {
    background-color: #5b0d28 !important;
}

.sub-collapsible-content {
    background-color: #fff;
    color: #000;
}

ul {
    text-align: center;
    list-style-position: inside;
}

.param-section > h5, .param-section > p {
    display: inline-block;
}

.pretty-print-json {
    text-align: left;
}