
.div-1 {
    	background-color: #EECCFF;
    }

/* Nav container */
nav {
    	background-color: #EECCFF;

/*  background-color: #5588AA; */
}

/* Top-level menu */
.menu {
  display: flex;
  list-style: none;  /* remove bullets */
  /* gap: 20px;         /* space between top-level menus */
  padding-left: 0;   /* remove default ul padding */
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Top-level buttons */
.dropbtn {
  padding: 16px;
  font-size: 16px;
  color: black;
/*  color: white;*/
  background-color: #EECCFF;

  /*background-color: #5588AA;*/
  border: none;
  cursor: pointer;
}

/* Focus/hover/open state */
.dropbtn:focus,
.dropdown:hover > .dropbtn,
.dropdown:focus-within > .dropbtn {
    	background-color: #882277;

/*  background-color: #336699;*/
  outline: 2px solid #ffbf47;
  outline-offset: 2px;
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #f1f1f1;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Optional: ensure dropdowns align properly */
.dropdown-content {
  list-style: none;
  padding: 0;       /* remove UL default padding inside dropdown */
  margin: 0;
}



/* Show dropdown when button is focused or hovered */
.dropdown:hover > .dropdown-content,
.dropdown:focus-within > .dropdown-content {
  display: block;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: black;
  text-decoration: none;
}

/* Hover/focus for dropdown links */
.dropdown-content a:hover,
.dropdown-content a:focus {
  background-color: #ddd;
  outline: none;
}