.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-btn {
  background-color: white;
  font-size: 1rem;
  line-height: 1rem;        
  color: black;
  text-align: center;
  text-wrap: nowrap;      
  text-decoration: none; 
  text-transform: none;      
  cursor: pointer;
  padding:0.5rem;
  margin: 0 0.5rem;
  border-radius : 0.5rem;      
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 120px;
  padding-bottom:0.2rem;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 0.2rem 0.2rem;
  text-decoration: none;
  display: block;
  border-bottom:1px black solid;
}

.dropdown-content a:hover {background-color: #ddd;}

/* 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 .dropdown-btn {
  background-color: black;
  font-weight: bold;
  color: white;      
}

.navbar2 .menu_item:hover {
  background-color: black;
  border-radius : 0.5rem;        
  /*font-weight: bold;*/
  color: white;      
}


/*
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropdown-btn {
  background-color: black;
  font-weight: bold;
  color: white;      
}
*/






