/* ============================================================
   Microgrid playground — experimental standalone module.
   Scoped styles only; all scene rendering lives on the canvas.
   ============================================================ */

.microgrid {
  padding-bottom: 0.5rem;
}

.mg-scroll {
  overflow-x: auto;
}

.mg-scroll canvas {
  display: block;
}

/* the scene is a pointer-driven toy; skip it on mobile */
@media (max-width: 800px) {
  .microgrid {
    display: none;
  }
}
