/* priority-icons.css (kept as sort.css) — the four colour-coded priority glyphs. The stage that
   used to own them is gone; the board still uses these colours for a task's tag icon. */

.priority-icons {
  display: flex;
  flex-shrink: 0;
  gap: 2px;
}

.priority-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--muted);
  transition:
    background var(--dur-fast),
    color var(--dur-fast),
    box-shadow var(--dur-fast);
}

.priority-icon--do {
  color: var(--red);
}
.priority-icon--plan {
  color: var(--yellow);
}
.priority-icon--delegate {
  color: var(--blue);
}
.priority-icon--delete {
  color: var(--gray);
}

.priority-icon:hover {
  background: var(--surface-2);
}

/* Tagged: the glyph fills with its own colour — no ring around it. */
.priority-icon.is-active {
  box-shadow: none;
  background: transparent;
}

.priority-icon.is-active svg {
  fill: currentColor;
}
