/* =====================================================================
   v224 — Team Management footer surface cleanup only.
   - Remove the divider above Close.
   - Make the sticky Close footer fully opaque.
   - Fill the mobile area below the Close row through the sheet bottom.
   Keeps Team logic, permissions, Site/Design behavior and database untouched.
   ===================================================================== */

.team-close-actions {
  border-top: 0 !important;
  background: var(--option-panel) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* v221 intentionally positions the Team action row 19px above the mobile
   sheet bottom to match the New Project action level. Fill that remaining
   footer strip with the same sheet surface so the page behind cannot show
   through. */
@media (max-width: 639px) {
  .team-close-actions::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: calc(19px + env(safe-area-inset-bottom));
    background: var(--option-panel);
    pointer-events: none;
  }
}
