.new-hbmsu-menu-item {
  position: relative;
}

.new-hbmsu-menu-button {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  padding: 2rem 0;
  cursor: pointer;
  transition: color 0.2s;
}

.new-hbmsu-menu-button:hover {
  color: #2563eb;
}

.new-hbmsu-menu-button.active {
  color: #2563eb;
}

.new-hbmsu-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.new-hbmsu-menu-button.active .new-hbmsu-chevron {
  transform: rotate(180deg);
}

.new-hbmsu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 328px;
  background: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-out;
}

.new-hbmsu-menu-item:hover .new-hbmsu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.new-hbmsu-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s;
}

.new-hbmsu-dropdown-item:last-child {
  border-bottom: none;
}

.new-hbmsu-dropdown-item:hover {
  background: #f0f3f5;
  color: #2563eb;
}

.new-hbmsu-arrow-icon {
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.2s;
}

.new-hbmsu-dropdown-item:hover .new-hbmsu-arrow-icon {
  opacity: 1;
  transform: translateX(4px);
}
