.navbar {
  overflow: hidden;
  background-color: #BF3A00;    /* #A17;    #0000FF */
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 6px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 6px 16px;
  background-color: inherit;
  font-family: inherit;
  text-decoration: none;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color:  #800;   /*  #A17;    #0088FF  */
  text-decoration: none !important;
  color: white !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color:  #800;   /* #f9f9f9; */
  min-width: 160px;
  box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.7);
  z-index: 1;
  color: white;
  text-decoration: none;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 6px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-top: 1px solid #CCC;
}

.dropdown-content a:hover {
  background-color: #400;      /*  #ddd; */
  text-decoration: none;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
  text-decoration: none;
  color: white;  
}

.caret::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
}

.dropnav { font-size: 14px; }