body{
    padding-left:0px;
    padding-right:0px;
    display:block;
    margin: auto;
    display:block;
    overflow: hidden;
}
header.package-header {
    position: sticky;
    position: -webkit-sticky;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 56px;
    top: 0px;
    left: 0px;
    width: 100%;
    opacity: 1;
}

h1.intro {
    margin-block-start: 0px;
    margin-left: 5px;
}

#hamburger {
    height: 30px;
}

#hamburger::after {
    content: '☰';
}

#navigation-popup{
    position: fixed;
    inset-block-start: anchor(end);
    margin: 0px;
    inset-inline: anchor(right);
    width: calc(75vw);
}



main{
    max-height: calc(100vh - 56px);
    /* top:50px;
    position:absolute; */
    padding-left: 15px;
    padding-right: 15px;
    /* max-width:1100px; */
    overflow: auto;
    z-index: -1;
}

h1.package{
    text-align:center;
    
    margin-top: 15px;
    margin-bottom: 0px;
}

.inherited-from{
    display: none;
}
tr:nth-child(2n) {
    background-color: var(--even-row-bg-color, #f8f8f8);
}
* {
    -webkit-font-smoothing: antialiased;
    font-family: var(--main-font, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace);
}
table caption.title{
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    border-bottom-style: solid;
}
table table caption.title{
    font-size: 14px;
    text-align: center;
}
table{
    width: 100%;
    margin-bottom:12px;
    margin-top:12px;
}
table.details caption.title{
    font-size: 14px;
}




h1{
    text-align: center;
}
/* [data-len="0"]{
    text-align: center;
}
.description-label{
    text-align:center;
}
table.narrow td{
    vertical-align: top;
}
table.narrow .description-label{
    text-decoration: underline;
} */
@media (prefers-color-scheme: dark) {
    body{
        background-color: var(--dark-bg-color, #1d1f21);
        color: var(--dark-fg-color, #f8f8f2);
    }
    tr:nth-child(2n) {
        background-color: var(--even-row-bg-color, #2e2f31);
    }
    a{
        color: var(--dark-link-color, rgb(29, 155, 240));
    }
    
}

@media screen and (max-width: 900px) {
    th.type, td.type{
        display:none;
    }
    th.resolveInitializer, td.resolveInitializer{
        display:none;
    }
    th.reflects, td.reflects{
        display:none;
    }
    h1.package{
        font-size: medium;
    }
}
th.parameters{
    display:none;
}

