/**
 * tag-selector.css
 * Last modified: v015.028 (2025-11-12)
 * Changes: Styling for tag selector modal
 */

/* Tag Selector Modal Specific Styles */
.editor-tag-selector-list {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--theme-border-primary, #333);
  border-radius: 8px;
  padding: 1rem;
  background: var(--theme-bg-tertiary, #1a1a1a);
}

.editor-tag-selector-list .editor-checkbox-label {
  display: block;
  padding: 0.5rem;
  margin: 0;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.editor-tag-selector-list .editor-checkbox-label:hover {
  background: var(--theme-bg-hover, #2a2a2a);
}

.editor-tag-selector-list input[type="checkbox"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

/* Empty state */
.editor-tag-selector-list .editor-form-help {
  text-align: center;
  padding: 2rem;
  color: var(--theme-text-secondary);
}
