.dropbtn {
  background-color: rgb(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.87);
  border-radius: 1.2vh;
  color: #000000;
  cursor: pointer;
  float: right;
  margin-left: auto;
  width: 24vh;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 2.7vh;
  height: 6vh;
  text-align: center;
  font-family: "comic_sans_msregular";
    font-weight: 700;
}

.dropdown {
  display: block;
  margin-right: 5px;
  margin-top: 10vh;
  margin-left: auto;
  width: 24vh;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background-color: rgb(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.87);
  border-radius: 1.2vh;
  display: none;
  z-index: 1;
  margin-right: inherit;
  width: 100%;
  margin-top: 6vh;
  overflow-y:auto;
  max-height: 80%;
  border-radius: 1.2vh;
  font-family: "comic_sans_msregular";
    font-weight: 700;
}

/* Links inside the dropdown */
.dropdown-content button {
  cursor: pointer;
  background-color: transparent;
  font-size: 3vh;
  color: #919191;
  padding: 1.3vh 1vh;
  text-decoration: none;
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  border-radius: 1.2vh;
  font-family: "comic_sans_msregular";
    font-weight: 700;
}
/* Links inside the dropdown */
.dropdown-content button:hover {
  background-color: rgba(255, 255, 255, 0.6);
}


/* 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: rgba(255, 255, 255, 0.6);
}
.dropdown-content .selected {
    color: #000000;
}