#exampleDropdown {
  position: absolute;
  right: 0;
  top: 32px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  min-width: 240px;
  z-index: 100;
  border: 1px solid #e7e4ef;
  max-height: 50vh;
  overflow-y: auto;
}

#exampleDropdown button {
  font-size: 12px !important;
  padding: 12px 16px !important;
  background: none !important;
  color: #5b2ea6 !important;
  border: none !important;
  text-align: left !important;
  width: 100% !important;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif !important;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border-bottom: 1px solid #f0f0f0;
}

#exampleDropdown button:last-child {
  border-bottom: none;
}

#exampleDropdown button:hover {
  background: #ede7f6 !important;
  color: #2c5364 !important;
}