/* Style the button that opens the dropdown menu */
.dropbtn {
    background-color: rgba(76, 175, 80, 0);
    color: #488575;
    padding: 0;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Style the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(70, 2, 70, 0.62);
    min-width: 148px;
    box-shadow: 0px 8px 16px 0px rgb(2, 54, 70);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: #62a105;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown menu on click */
.dropdown.clicked .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown links on hover */
.dropdown-content a:hover {
    background-color: rgba(2, 54, 70, 0.57);
    color: #ab38a5;
}

/* Change the background color of the button when the dropdown is open */
.dropdown.clicked .dropbtn {
    background-color: rgba(62, 142, 65, 0);
    color: #540352;
}
.Selected {
    background-color: rgba(2, 63, 63, 0.76);
    cursor: no-drop;
}
@media only screen and (max-width: 398px) {
    dropdown-content {
    min-width: 128px;
}
}