/*
  IMPORTANT:
  - Do NOT force-hide app2 menu icons here.
  - Keep only layout helpers.
*/
html,
body {
  height: 100%;
  margin: 0;
}

#wuwei {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Ensure menu layer is above the SVG */
#menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

/* But allow clicking on menu contents */
#menu * {
  pointer-events: auto;
}

/* SVG should fill the viewport */
#draw {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Side panes (edit/info/modal) */
#edit,
#info,
#modal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
}

.w3-modal {
  z-index: 5;
}