/* Default - for white backgrounds */
dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

dropdown-list .dropdown-item {
  padding: 12px 16px;
  color: var(--g7);
  opacity: 0.6;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.08s ease-out;
  border-radius: 8px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

dropdown-list .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
  opacity: 1;
}

dropdown-list .dropdown-item:active {
  transform: translateX(4px) scale(0.94);
}

dropdown-list .dropdown-item[selected] {
  background: rgba(0, 0, 0, 0.12);
  opacity: 1;
  transform: translateX(4px);
}

/* Primary variant - for colored primary backgrounds */
dropdown-list[variant="primary"] {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

dropdown-list[variant="primary"] .dropdown-item {
  color: white;
}

dropdown-list[variant="primary"] .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

dropdown-list[variant="primary"] .dropdown-item[selected] {
  background: rgba(255, 255, 255, 0.2);
}

/* Dark variant - for dark backgrounds */
dropdown-list[variant="dark"] {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

dropdown-list[variant="dark"] .dropdown-item {
  color: var(--g2);
}

dropdown-list[variant="dark"] .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

dropdown-list[variant="dark"] .dropdown-item[selected] {
  background: rgba(255, 255, 255, 0.15);
}
