html {
    overflow-y: scroll;
}

.test {
    background-color: tomato;
    color: white;
    border: 2px solid black;
    margin: 20px;
    padding: 20px;
}

body {
    background: white;
    font-weight: 200;
}


.fullframe {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 3rem;
    margin-right: 1rem;
    padding: 1rem;
}


/* ============================== SIDE NAVBAR ============================== */
.leftbar {
    top: 0;
    margin: 0;
    padding: 0;
    width: 2rem;
    background-color: #eeeeee;
    position: fixed;
    height: 100%;
    writing-mode: vertical-rl;
    text-align: center;
}

.sidenav {
    min-width: 600px;
}

/* ============================== MAIN NAVBAR ============================== */

.nav-item {
    color: #1289A7;
}

.nav-text {
    padding: 0px 10px 0px 10px;
    font-size: 20px;
    font-weight: 400;
    color: #1289A7;
}

.nav-text.active {
    color: #1289A7;
}

.nav-text.inactive {
    color: #c8d6e5cc;
}

.nav-text.selected {
    color: #ee5253;
    text-decoration: underline;
}


.icon {
    height: 30px;
}


/* ============================== HEADINGS ============================== */
h4 {
    color: #456;
}
h5, h6 {
    color: #01a3a4;
}


/* ============================== SECTIONING ============================== */
.indent1 {
    margin: 20px 20px 20px 20px;
    padding: 20px 20px 20px 20px;
}


/* ============================== TABLE ============================== */
tr {
    line-height: 14px;
}

.cntr {
    text-align: center;
}


/* ============================== DROPZONE ============================== */
/* Credit: https://www.youtube.com/watch?v=jUtCtlCRAT4 */
.dz {
    border: dashed !important;
    border-color: #40739e !important;
    border-radius: 10px !important;
    transition: 0.3s;
}

/* Credit: https://www.youtube.com/watch?v=jUtCtlCRAT4 */
.dz:hover {
    background-color: #c7ecee !important;
}


code {
    background-color: #eee;
    border-radius: 3px;
    font-family: courier, monospace;
    padding: 0 3px;
}