.my-dropdown-menu {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 4px;
  min-width: 120px;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 125ms ease-out, transform 125ms ease-out;
  pointer-events: none;
}

.my-dropdown-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #333;
  transition: background-color 0.125s ease, color 0.125s ease;
}

.dropdown-item span:first-of-type {
  order: 1;
}
.dropdown-item i,
.dropdown-item svg {
  order: 2;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #656565;
  transition: color 0.125s ease;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}
