/* Styles du composant TagBadge */
/* Badge colore pour les etapes du funnel + dropdown de selection */

/* Dropdown de selection d'etape */
.tag-badge-dropdown {
  position: fixed;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: var(--z-tooltip);
  min-width: 160px;
  padding: var(--space-xs);
  animation: fadeInUp 150ms ease;
}

.tag-badge-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.tag-badge-dropdown-item:hover {
  background: var(--color-bg-hover);
}

.tag-badge-dropdown-item.active {
  background: var(--color-primary-muted);
  color: var(--color-primary);
  cursor: default;
}

.tag-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
