/* edit-system.css — pairs with editManager.js.
   While one editor is active, hide the other edit buttons; the active one
   reads as a filled coral "Save". */

/* Single-active: hide every edit button except the one being edited */
body.edit-active .menu-icon:not(.edit-active-btn) {
  visibility: hidden !important;
  pointer-events: none !important;
}
.menu-icon.edit-active-btn { visibility: visible !important; }

/* Active button = filled coral Save (works on the chip pills and inline pills) */
#playdate-info .menu-icon.edit-active-btn,
.menu-icon.edit-active-btn {
  background: var(--ft-coral, #ff5a5f) !important;
  color: #fff !important;
  border-color: var(--ft-coral, #ff5a5f) !important;
}
