body, html {
    height:100%;
}

#main {
    display: flex;
    height: 100%;
}

#content {
    margin-left: 250px;
    padding: 20px;
}

select{
    width: 100%;
}

h1 {
    color: white !important; 
    background-color: blue;
    padding: 5px;
    border-radius: 3px;
    width: 500px;
    text-align: center;
}

table {
    width: 500px !important;
}

#navBar {
    background-color: black;
    width: 250px;
    height: 100%;
    text-align: center;
    position: fixed;
}

i {
    margin-right: 5px;
    color: black;
}

.text-right{
    text-align: right;
    white-space: nowrap;
}

#navBar a {
    display: inline-block;
    padding: 5px;
    font-size: 1.4em;
    text-decoration: none; /*removes underline for links*/
    color: white;        /*makes links white instead of default blue, even if visited*/
    width: 100%;
}

#navBar a:hover {
    background-color: grey;
}

input[type=text], input[type=url], input[type=date]{
    width: 100%;
}
 textarea{
    width: 100%;
 }



/* CST 336 Footer for Labs and HW */
#imgLogo {
    width: 100%;
}
#expandFooter{
    width: 100%;
}

#logo {
    width: 20%;
}

footer div {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    margin: auto;
    width: auto;
}

#footercontent {
    width: 100%;
    display: flex;
}

#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    padding: 0px;
    margin: 0px;
}

#expandFooter {
    width: 100%;
    height: 20px;
    padding: 0px;
    margin: 0px;
}

#footer:hover {
    height: auto;
}

#footertext {
    color: hotpink;
    font-size: 85%;
    display: block;
}