/* ============================================================
   RATNA HEALTHPLEX — Reusable Network Canvas
   network-canvas.css | v1.0

   Positioning for the connecting-dots/nodes background effect
   (see /assets/js/network-canvas.js). Drop a
     <canvas class="network-canvas" aria-hidden="true"></canvas>
   as a child of any section that has (or is given)
   `position: relative; overflow: hidden;`, and make sure that
   section's actual content wrapper has `position: relative;
   z-index: 1;` so it stays above the canvas.
   ============================================================ */
canvas.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
