/* dropup Button */
.dropbtn {
    background-color: #8B7355;
    color: white;
    padding: 6px;
    font-size: 12px;
    border: none;
}

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

/* dropup Content (Hidden by Default) */
.dropup-content {
    max-height:120px;   /* vertical size of dropup */
    overflow:auto;      /*   to get scroll */
    display: none;
    position: absolute;
    bottom: 25px;      /* to force drop UP */
    background-color: #f1f1f1;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropup */
.dropup-content a {
    text-align: left;
    color: #002200;
    padding: 2px 2px;
    text-decoration: none;
    display: block;
}

/* Change color of dropup links on hover */
.dropup-content a:hover {background-color: #ddd;}

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

/* Change the background color of the dropup button when the dropup content is shown */
.dropup:hover .dropbtn {background-color: #3e8e41;}

