 /* Dropup Button */
.dropupbtn {
  background-color: #ff0000;
  color: white;
  padding: 6px;
  font-size: 10px;
  border: none;
}

.dropupstrg {
  background-color: gelb;
  color: blau ;
  padding: 6px;
  font-size: 12px;
}

/* 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: 10px;
  right: -50px;
  background-color: #f1f1f1;
  min-width: 360px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 11000;
}

/* Links inside the dropup */
.dropup-content a {
  color: black;
  padding: 10px ;
  text-align: start;
  text-decoration: underline  #ff3028; /* 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: #2980B9;
} 