
.menu-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger-icon {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  color: white;
}

.hamburger-icon div {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: transform 0.3s ease;
}

.vertical-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; /* Position below the hamburger icon */
  right: 0;
  width: 200px;
  list-style-type: none;
  padding: 10px;
  border-radius: 5px;
  border: #292945 1px solid;
  transform: scaleY(0); /* Initially hide the menu */
  transform-origin: top;
  transition: transform 0.3s ease;
}

.vertical-menu.open {
  transform: scaleY(1); /* Show the menu */
}

.vertical-menu ul {
  padding: 0;
  margin: 0;
  background-color: #2c2c44;
}

.vertical-menu li a {
  display: block;
  padding: 10px 15px;
  color: white; /* The new color */
  text-decoration: none;
  border-bottom: 1px solid #555;
}

/* Optional: Add a subtle hover effect */
.vertical-menu li a:hover {
  opacity: 67%;
}

.vertical-menu li:last-child a {
  border-bottom: none; /* Remove border from last item */
}