.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  height: 25px;
  border-radius: 7px;
  padding: 0px 10px 0px 10px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.dropdown-button i {
  font-style: normal;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 1;
  margin-top: 5px;
  text-align: left;
}

.dropdown-content div {
  padding: 10px;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: #f1f1f1;
}

.show {
  display: block;
}