.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  width: 150px;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  width: 183px;

}
.dropbtn:hover, .dropbtn:focus{
  background-color: green;
  font-weight: bold;
}

.navbar .dropdown:hover {
  background-color: green;
  font-weight: bold;
}

.dropbtn.active {
	background-color: red;
	font-weight: bold;
  color: white;
	text-transform: uppercase;
	text-decoration: underline overline;
}

.navbar a:hover {
  background-color: green;
  font-weight: bold;

}

.navbar a:hover {
  background-color: green;
  font-weight: bold;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
 width: 183px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: #ddd;
  width: 150px
}

.show {
  display: block;
}

.navbar a.active {
	background-color: red;
	font-weight: bold;
  color: white;
	text-transform: uppercase;
	text-decoration: underline overline;
  width: 150px;
}
