/* =====================================================================
   v226 — Team Management interaction cleanup.
   - no hover/press surface effect on member rows
   - long-press the row itself to reorder; no drag grip
   - 50px from the final member list boundary to the Close footer
   ===================================================================== */

.team-member,
.team-member:hover,
.team-member:active {
  background: transparent !important;
  transform: none;
  -webkit-tap-highlight-color: transparent;
}

.team-member[data-reorderable="true"] {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  cursor: grab;
}

.team-member[data-reorderable="true"].is-dragging {
  cursor: grabbing;
}

/* v222's grip is no longer part of the UI. Keep this defensive rule in
   case an older cached Team renderer briefly inserts one. */
.team-drag-handle {
  display: none !important;
}

/* v224 removed the visible divider. This is the spacing to that footer
   boundary: exactly 50px from the member-list block. */
.team-close-actions {
  margin-top: 50px !important;
}
