﻿/* Fixed sidenav, full height */
.BottomPane {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f2f5ff;
    border-top: 2px solid #003366;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

input[type="submit"], [type="button"] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    color: #666;
    background-color: #f5f5f5;
    border-color: #e9e9e9;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
}

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 20px;
}

    /* Style the sidenav links and the dropdown button */
    .sidenav a, .dropdown-btn, .sub-sub-btn {
        padding: 6px 8px 6px 26px;
        text-decoration: none;
        font-size: 20px;
        color: #e0e0e0;
        display: block;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        outline: none;
    }

        /* On mouse-over */
        .sidenav a:hover, .dropdown-btn:hover {
            color: #f1f1f1;
            background-color: #c85e04;
        }
.sub-sub-btn {
    font-size: 16px;
}

.sub-sub {
    margin-left:15px;
    font-size: 16px;
    display:none;
}

.dropdown-btn {
    
    /*forcing font because it's being overwritten for some reason*/
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.sub-dropdown-btn {

}
/* Main content */
.main {
    margin-left: 250px; /* Same as the width of the sidenav */

    padding: 0px 10px;
    background-color: white;
}

/* Add an active class to the active dropdown button */
.active {
    background-color: #c85e04;
    color: white;
}

/* 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 {
    display: none;
    background-color: #262626;
    padding-left: 0px;
}

    .dropdown-container a {
        font-size: 16px;
    }

input[type="text"], textarea, select {
    padding: 5px;
    margin: 3px 0px 3px 0px;
    border-radius: 3px;
    font-size: 14px;
    color: #6B6B6B;
    border: 1px solid #CECECE;
    color: #6B6B6B;
}



fieldset {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
}

table {
    text-align: left;
    font-size: 14px;
}
th a {
    color:black;
    text-decoration: none;
}
th a:hover {
    color: #333;
}


/*Space for radio button list selectors*/
.RadioButtonSelector input[type="radio"] {
    margin-left: 5px;
    margin-right: 1px;
}