
.navbar {
  overflow: hidden;
                                /*  background-color: #333; */ 
  font-family: Arial, Helvetica, sans-serif; width:120px;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 19px; font-weight:600;  
  border: none;
  outline: none;
  color: white; color:#f5f5f5;
  padding: 6px 10px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
                           /* background-color: red;*/
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ccc;
  width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1500;
  
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
 
}

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

.show {
  display: block;
}

