body {
    background-color: #f5f8ff;
}
.divider {
    height: 75px;
}
.background {
    padding: 30px 0;
}
.main {
    display: inline-block;
    width: 79%;
    vertical-align: top;
    background-color: white;
    box-shadow: 1px 1px 6px #e6e6e6ab;
    padding: 30px 0;
    text-align: justify;
    color: #192c50;
    font-size: 14px;
    position: relative;
}
.toc {
    display: inline-block;
    width: 20%;
    vertical-align: top;
    position: sticky;
    top: 0;
    transition: top 0.3s;
}
.main > section {
    width: 90%;
    margin: auto;
    padding-top: 20px;
}
h1 {
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}
h2 {
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}
p {
    line-height: 26px;
}
li {
    font-size: 14px;
}
.toc h4 {
    padding-left: 7px;
}

.toc ul {
    list-style-type: none;
    margin-block: 0;
    padding-inline-start: 7px;
}
.toc li {
    padding-left: 5px;
    line-height: 2;
}
.nav-link {
    border-left: 3px solid #bec4d4;
    padding: 7px 0 7px 6px;
    display: block;
}

.nav-link:visited {
    color: #00297a;
}

.nav-link:hover {
    text-decoration: underline;
}
.download {
    background-color: gainsboro;
    padding: 5px 7px;
    border-radius: 2px;
    box-shadow: 2px 2px 3px #494c505c;
    font-size: 14px;
    color: #00297a;
}
.top-align {
    vertical-align: top;
}
.top-align td {
    vertical-align: top;
}
.border-table {
    border: 1px solid black;
    border-collapse: ;
}
.docs table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f8f8;
    margin: 15px 0;
}
.docs img {
    max-width: 100%;
}
.docs td {
    vertical-align: top;
    padding: 10px;
    line-break: anywhere;
}
.docs table h2 {
    margin: 0;
}
.docs table p {
    margin: 0;
}
.docs table ul {
    padding-inline-start: 20px;
}


section.docs {
    color: transparent;
    text-shadow: 0 0 11px #bababa;
}
section.docs img, section.docs a {
    display: none;
}
.melayang {
    position: sticky;
    top: 15vh;
    background-color: white;
    width: 50% !important;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 1px 4px 3px 0px #e0e0e0;
    color: black;
    border: 1px solid #00297a;
    padding: 0 !important;
}
.manual {
    width: 85%;
    margin: auto;
    padding: 20px 0;
}
input {
    border: none;
    background-color: white;
    width: 100%;
    line-height: 2;
    border: 1px solid #dfdfdf;
    text-indent: 5px;
    margin-bottom: 15px;
    padding: 0;
}
input:focus-visible {
    outline: 0;
    border-bottom: 1px solid green;
    background-color: #f5f8ff;
}
input[type="submit"] {
    background-color: #00297a;
    color: white;
    font-family: 'Poppins';
    padding: 6px 0;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: green;
}
input[type="submit"]:focus-visible {
    background-color: green;
}
label {
    font-size: 13px;
}
.request-status {
    font-size: 14px;
}
.request-title {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

@media only screen and (max-width: 450px) {
    .toc {
        display: none;
    }
    .main {
        width: 100%;
    }
    .docs td {
        padding: 5px;
    }
    #download {
        position: sticky;
        top: 0;
        z-index: 1;
        transition: top 0.3s;
    }
}
@media only screen and (max-width: 768px) {
    .melayang {
        width: 90% !important;
    }
}