.container {
  background-color: var(--color-base-white);
  border-radius: 0.25rem;
  box-shadow: var(--box-shadow-lg);
  color: var(--color-neutral-gray-dark);
  display: flex;
  flex-direction: column;
  min-width: 10rem;
  padding: 0.5rem 0;
  position: fixed;
  width: min-content;
  z-index: 9999;
  animation: fadeInScale 0.12s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dropdownItem {
  align-items: center;
  display: flex;
  padding: 0.35rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-neutral-black);
  cursor: pointer;
  transition: background-color 0.15s ease;
  border-left: 3px solid transparent;
  width: 100%;
}

.dropdownItem:hover {
  background-color: var(--color-background-gray);
  color: var(--color-text-black);
  border-left: 3px solid var(--color-text-primary);
}
