/* Styles for the navbar */
.navbar {
  width: 100%;        /* Ensures it spans the full width */
  position: fixed;    /* Keeps it at the top */
  top: 0;
  left: 0;
  z-index: 1000;      /* Ensures it stays on top of other content */
  background-color: #333; /* Example background color */
}
 /* Aligns links horizontally */
/********
.navbar a, .dropdown .dropbtn {
  display: inline-block;
} 
************/
 
/*
.navbar {
  overflow: hidden;
  background-color: #333;
}
*/

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
