.website-navigation-navbar-container {
  position: relative;
  grid-area: nav;
  background-color: #f3d1fd;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: auto;
}

.website-navigation {
  font-family: 'Patrick Hand', cursive;

}

/* Remove list styles and layout items horizontally */
.website-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
}

/* List items */
.website-navigation li {
  position: relative;
}

/* Links */
.website-navigation a {
  all: unset;               /* Unset all browser default styles */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  vertical-align: middle;
  padding: 4px 8px;
  cursor: pointer;
  height: auto;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;           /* Use current text color, or define as needed */
}

/* Dropdown container positioning */
.website-navigation .dropdown-content {
  display: none;
  position: absolute;
  top: 37px;
  left: 0;
  flex-direction: column;
  background-color: white;
  border: 2px solid pink;
  border-radius: 8px;
  width: 300px;
  z-index: 1000;
}

/* Show dropdown on hover */
.website-navigation li:hover .dropdown-content {
  display: flex;
}

/* Dropdown item styles */
.website-navigation .dropdown-content a {
  all: unset;
  display: block;
  box-sizing: border-box;
  background-color: yellow;
  color: red;
  padding: 10px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.website-navigation .dropdown-content a:hover {
  background-color: brown;
  color: green;
}
