/* Fixed sidenav, full height */

.sidenav {
    background-color: #1ba1fa;
    font-family: "Arial", sans-serif;
    height: 100%;
    left: 0;
    overflow-x: hidden;
    padding: 1px;
    position: fixed;
    top: 0;
    width: 20%;
    z-index: 1;
}

.rightside {
    background-color: #1ba1fa;
    font-family: "Arial", sans-serif;
    height: 100%;
    left: 25%;
    overflow-x: hidden;
    padding: 1px;
    position: fixed;
    top: 0;
    width: 75%;
    z-index: 1;
}

.sidenav a,
.dropdown-btn {
    background: none;
    border: 1px solid;
    color: black;
    cursor: pointer;
    display: block;
    font-family: "Arial", sans-serif;
    font-size: 1em;
    outline: none;
    padding: 1px;
    text-align: left;
    text-decoration: none;
    width: 98%;
}


/* On mouse-over */

.sidenav a:hover,
.dropdown-btn:hover {
    color: Yellow;
}


/* Main content */

.main {
    font-size: 1em;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    font-family: "Arial", sans-serif;
}


/* Add an active class to the active dropdown button */

.active {
    background-color: #99ebff;
    color: #1ba1fa;
    font-family: "Arial", sans-serif;

}


/* Dropdown container (hidden by default). 
   Optional: add a lighter background color and some left padding 
   to change the design of the dropdown content */

.dropdown-container {
    background-color: #00ccff;
    display: none;
    font-family: "Arial", sans-serif;

    padding-left: 5px;
}


/* Optional: Style the caret down icon */

.fa-caret-down {
    float: right;
    padding-right: 5px;
    font-family: "Arial", sans-serif;
}


/* Some media queries for responsiveness */

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 10px;
    }
    .sidenav a {
        font-size: 1.6em;
    }
}