/* Context Pill */
#context-pill-container {
  margin-bottom: 8px;
}

#context-pill-container:empty {
  display: none;
}

.context-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-lighter);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 4px 8px 4px 12px;
  font-size: 12px;
  color: var(--text);
}

.context-pill-label {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.context-pill-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 2px;
  border-radius: 50%;
}

.context-pill-remove:hover {
  background: var(--border);
  color: var(--text);
}

/* Selectable Cards */
.selectable {
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s;
}

.selectable:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.selectable.selected {
  background-color: rgba(99, 102, 241, 0.08);
  border-color: var(--accent);
}
