/* Dropup Button */
/* yellow: #f4eb42*/
/* blue: #4266f4*/
/* white: #f1f1f1*/

.dropbtn {
    background-color: #f4eb42;
    color: black;
    padding: 16px;
    font-family: solarSystemfont;
    font-size: 16px;
    border: none;
    width: 150px;
}

/* The container <div> - needed to position the dropup content */
.dropup {
    position: relative;
    display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
    display: none;
    position: absolute;
    bottom: 50px;
    background-color: #f1f1f1;
    min-width: 150px;
    z-index: 1;
}

/* Links inside the dropup */
.dropup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-left: 5px solid #f1f1f1;
}

/* Change color of dropup links on hover */
.dropup-content a:hover {
    background-color: #f1f1f1;
    border-left: 5px solid #4266f4;

}

/* 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: #f1f1f1;
}