﻿body {
    /*padding-top: 100px;
    padding-bottom: 20px;*/
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}



#myModal {
   /* backdrop-filter: blur(8px);*/
}






:root {
    --mdc-theme-primary: #f2a600;
}








.dropbtn {
    border: none;
    background-color:white;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow:visible;
    padding:10px;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {

        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {

}

.dropdown-content div {
    line-height:30px;
}
.dropdown-content div:hover {
    background-color:#eee;
}