.st-manuals {
    max-width: 75ch;
    /* Limit to ~65 characters per line */
    width: 100%;
    /* Allow shrinking on mobile */
    margin: 0 auto;
    /* Center it on larger screens */
    padding: 0 1rem 3rem 1rem;
    /* Add some padding for mobile */
}

.st-manuals h1,
.st-manuals h2,
.st-manuals h3,
.st-manuals h4,
.st-manuals h5,
.st-manuals h6 {
    margin: 1.5em 0 0.25em 0;
}

.st-manuals img {
    max-width: 75ch;
    /* Limit to ~65 characters per line */
    width: 100%;
    /* Allow shrinking on mobile */
}

.st-manuals h1 {
    font-size: 3.5rem;
}

.st-manuals h2 {
    font-size: 2.5rem;
}

.st-manuals h3 {
    color: rgb(0, 100, 75);
    font-size: 2rem;
    font-weight: bold;
}

.st-manuals h4 {
    font-size: 1.5rem;
}

.st-manuals p,
.st-manuals li,
.st-manuals dl,
.st-manuals dt,
.st-manuals dd,
.st-manuals th,
.st-manuals td  {
    line-height: 1.6;
    font-family: -apple-system, Helvetica, Arial, sans-serif;
}

.st-manuals p {
    margin-top: 0;
    margin-bottom: 1em;
}


/*.st-manuals dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    row-gap: 0.5em;
}*/

/* param name */
.st-manuals dl dt {
    line-height: 1.6;
    font-family: -apple-system, Helvetica, Arial, sans-serif;
    font-weight: bold;
    padding: 0.4em;
    line-height: 3.0;
    display: inline;
    margin-left: -1em;
    padding-right: 1.5em;
    padding-left: 1em;
    border-bottom: 4px solid rgba(176, 231, 217, 0.5);
/*    background-color: rgba(176, 231, 217, 0.25); */
}

/* param explanation */
.st-manuals dl dd {
        line-height: 1.6;
    font-family: -apple-system, Helvetica, Arial, sans-serif;
}

.st-manuals blockquote {
    display: flow-root;
    background-color: rgba(176, 231, 217, 0.25);
    padding: 1em 1em 0em 1em;
    font-style: italic;

}

.st-manuals table 
{
    border-collapse: collapse;
}
.st-manuals table th,
.st-manuals table td
{
    font-size: 0.9em;
    text-align: left;
    padding: 0.5em;
    border: 1px solid rgba(200,200,200,1);
}

.st-manuals table th
{
        background-color: rgba(176, 231, 217, 0.25);
}
/*  
  border-left: 4px solid #ccc;
  background: #f9f9f9;
*/

/* for image captions */
.st-manuals figure {
    display: inline-block;
    margin: 1em 0;
    text-align: left;
}

.st-manuals figcaption {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.3em;
    max-width: 100%;
}

.st-manuals img {
    max-width: 100%;
    /*    max-height: 100%;*/
    width: auto;
    height: auto;
    display: block;
}

#img-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-in;
}

#img-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    background-color: white;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    cursor: zoom-out;
}

/* First level all the way to the left */
.st-manuals-toc ul {
    margin-left: 0;
    padding-left: 0;
    list-style-position: inside;
}

.st-manuals-toc li {
    list-style: none;
}

/* Force indentation on second level, won't work on third level */
.st-manuals-toc li li {
    margin-left: 2em;
}

/* Hide level 3 and below */
.st-manuals-toc li li li {
    display: none;
}