/* Keep fixed sync review controls outside the mobile toolbar's clipping box. */
@media (max-width: 900px) {
  .operations-bar {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .sync-status-popover {
    position: fixed;
    top: calc(70px + env(safe-area-inset-top));
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100svh - 84px - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

