/* Dropdown Button */
.dropbtn {
    font-size: 15px;
    border: none;
    cursor: pointer;
    padding: 7px 7px 5px;
    /* box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.22); */
    border-radius: 3px;
    outline: 0;
    margin: 5px 5px 0px;
    float: left;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    /*position: relative;*/
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    z-index: 99;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 190px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content > span,
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content > span:hover,
.dropdown-content a:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #232EB3;
}