body {
    margin: 0;
    color: rgb(56, 56, 56);
    color-scheme: light;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    scroll-behavior: smooth;
}

main {
    max-width: 80rem;
    margin: auto;
    padding: 1em;
}

a {
    color: rgb(46, 105, 255);
}

h1 {
    margin-top: 1.5em;
    font-size: 32px;
}

h2 {
    margin-top: 1.5em;
    font-size: 23px;
}

h3 {
    font-size: 16px;
}

p,
td {
    font-size: 0.9rem;
}

table {
    margin-top: 1rem;
    display: block;
    overflow: auto;
    border-spacing: 0;
}

th {
    color: #181818;
    font-weight: 600;
    border-bottom: 1px solid #c2c2c2;
    padding: .5rem 1rem;
    vertical-align: baseline;
    text-align: start;
    overflow-wrap: normal;
}

td {
    padding-inline-start: 0;
    border-bottom: 1px solid #c2c2c2;
    padding: .5rem 1rem;
    vertical-align: baseline;
    overflow-wrap: normal;
}

.grid-2 {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.5rem;
}

.grid-2>* {
    align-content: center;
}

.last-updated {
    font-style: italic;
    text-align: right;
}

.title {
    font-weight: 600;
}

.title img {
    height: calc(var(--sl-nav-height) - 2 * var(--sl-nav-pad-y));
    width: auto;
    max-width: 100%;
}

.header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.8rem;
    background-color: #f6f6f6;
    position: sticky;
    top: 0;
}

.header img {
    height: 2.4rem;
    margin-left: 0.7rem;
    margin-right: 0.2rem;
}

.header a {
    padding: 0.4rem;
    color: var(--green-1);
    text-decoration: none;
}

.header a.logo {
    color: black;
    font-weight: 600;
}

.header ul li {
    display: inline;
    padding-right: 0.8rem;
}

.header ul {
    padding: 1.6rem;
}

.header a:hover {
    text-decoration: underline;
}

.header a.active {
    color: var(--orange-9);
    background-color: var(--green-2);
    padding: 0.1rem 0.4rem;
    border-radius: 0.2rem;
    transition: color 0.5s;
}

.header a.active:hover {
    text-decoration: none;
}

.burger-shower {
    display: none;
}

.burger-shower:checked~.burger-menu {
    display: block;
}

.nav {
    grid-area: nav;
    margin-left: -2rem;
}

.nav ul li {
    list-style-type: none;
    padding: 0.5rem;
}

.nav .subnav {
    font-size: 0.8rem;
    margin-bottom: -0.5rem;
}

.nav li.subnav.active {
    background-color: var(--green-9);
    border-radius: 0 0 0.6rem 0;
}

.nav a {
    color: var(--green-2);
    text-decoration: none;
}

.nav a:hover {
    color: var(--green-4);
    transition: color 0.5s;
    text-decoration: underline;
}

.nav li.active {
    background-color: var(--green-8);
    border-left: 0.1rem solid var(--green-2);
    border-radius: 0 0.6rem 0 0;
}

.nav li.active a {
    color: var(--green-1);
    text-decoration: none;
}

.sidebar {
    grid-area: sidebar;
    z-index: -1;
}

/* keep sidebar in view even as screen scrolls */
.sidebar nav {
    border-left: 2px solid #f0f0f0;
    list-style-type: none;
    position: sticky;
    top: 4.8rem;
}

.sidebar ol {
    list-style-type: none;
}

.sidebar li {
    margin-top: 1rem;
}

.sidebar nav a {
    font-size: 0.8rem;
    color: var(--blue-3);
}

.sidebar nav a:hover,
.sidebar nav a.active,
.sidebar nav a.current {
    color: var(--blue-1);
    transition: color 0.5s;
}

/* footer */
.footer {
    grid-area: footer;
    color: black;
    margin-top: 1.5rem;
    /* height: 4rem; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer span {
    font-size: .75rem;
    line-height: 1rem;
    margin: .5rem;
}

.footer a {
    color: black;
}

#hamburger_header_navigation {
    display: block;
    padding-top: 1rem;
}

#inline_header_navigation {
    display: none;
}

aside.sidebar {
    display: none;
}

.hamburger {
    display: block;
    width: 1.6rem;
    height: 2.1rem;
    padding-left: 1rem;
}

.burger-menu {
    display: none;
    position: absolute;
    z-index: 10;
    top: 3.8rem;
}

ul.burger-menu {
    background-color: white;
    margin: 0;
    padding: 1rem;
    border-bottom: 2px solid #f0f0f0;
    border-right: 2px solid #f0f0f0;
}

ul.burger-menu li {
    display: block;
    margin: 0 0 1rem 0;
}

@media (min-width: 950px) and (min-device-width: 950px) {
    nav ul {
        flex-direction: column;
    }

    /* with more width show inline navigation */
    #hamburger_header_navigation {
        display: none;
    }

    #inline_header_navigation {
        display: block;
    }

    aside.sidebar {
        display: inline;
    }
}
