.menu-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.menu-wrapper > :last-child {
  margin-right: 20px;
}

.menu-item {
  padding: 8px 10px 2px 1px;
  font-size: 14px;
  cursor: pointer;
  color: #66a6ff;
}

.menu-item:hover {
  color: blue;
}

.menu-link:hover {
  text-decoration: underline;
}

.popup {
  position: absolute;
  display: none;
  flex-direction: column;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  border-color: #66a6ff;
  box-shadow: 0 0 0 3px #66A6FF33;
  overflow: hidden;
  min-width: 140px;
  z-index: 200;
}

.popup-option {
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.popup-option:hover {
  background-color: #f0f0f0;
}

