/**
 * cell-network-view.css — accessibility affordances for the Living Map that
 * Tailwind utilities can't express, scoped to the map's own control dock.
 *
 * The map is a mouse-driven operator instrument today, so the dock is compact
 * on purpose: the zoom trio (+ / − / home) renders at 28px, which is a fine
 * mouse target and well under the 44px touch floor. Rather than inflate the
 * dock for everyone, these rules key off `pointer: coarse` — the input device,
 * which is the thing that actually matters — so a finger gets a real target
 * and a mouse keeps the dense instrument.
 */
@media (pointer: coarse) {
  .cg-map-dock button {
    min-width: 44px;
    min-height: 44px;
  }
}
