.app-menu {
  display: flex;
  justify-content: center;
  background-color: #1e3c72;
  flex-wrap: wrap;
}

.app-menu .menu-item {
  position: relative;
  margin: 0 10px;
}

.app-menu a {
  color: white;
  text-decoration: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-menu a:hover {
  background-color: #1e90ff;
  border-radius: 4px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e3c72;
  flex-direction: column;
  min-width: 200px;
  border-radius: 4px;
  z-index: 100;
}

.dropdown.open .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 0.6rem 1rem;
  color: white;
}

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