/* Selected tag pills */
.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 13px;
  background: var(--primary-color);
  color: #fff;
  user-select: none;
}
.selected-tag .remove-tag {
  cursor: pointer;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1;
}
.selected-tag .remove-tag:hover {
  opacity: 1;
}

/* Tag modal items */
.tag-modal-item {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
  color: #333;
  transition: all 0.15s ease;
  user-select: none;
}
.tag-modal-item:hover {
  border-color: #1890ff;
}
.tag-modal-item.selected {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}

/* Dark mode */
body[data-theme="dark"] .tag-modal-item {
  border-color: rgba(255, 255, 255, 0.15);
  background: #2d2d2d;
  color: #e0e0e0;
}
body[data-theme="dark"] .tag-modal-item:hover {
  border-color: #1890ff;
}
body[data-theme="dark"] .tag-modal-item.selected {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
body[data-theme="dark"] .selected-tag {
  background: #1890ff;
}
