.root { display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; padding: 0; background: none; border: 1px solid transparent; border-radius: 4px; font-size: 11px; color: var(--fg-3); cursor: pointer; transition: color 0.1s, border-color 0.1s, background 0.1s; } .root:hover { color: var(--fg-1); background: var(--bg-2); border-color: var(--border-10); } .root:disabled { opacity: 0.3; cursor: default; } .root:disabled:hover { color: var(--fg-3); background: none; border-color: transparent; } .remove:hover { color: var(--error, #c53030); } .add { font-size: 13px; font-weight: 600; margin-left: auto; } .add:hover { color: var(--accent); } .close { width: auto; height: auto; padding: 2px 4px; font-size: 18px; line-height: 1; border: none; }