.dropdown {
  position: relative;
  display: inline-block;
}

.nav-button {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4B5563;
  transition: all 0.2s ease;
}

.nav-button:hover {
  color: #1F2937;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-width: 180px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #4B5563;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #F3F4F6;
  color: #1F2937;
}

.dropdown-item svg {
  width: 20px;
  height: 20px;
}

.dropdown-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 4px 0;
}

.dropdown-item span {
  font-size: 14px;
  font-weight: 500;
} 