.canvasArea {
  position: relative;
  flex: 1 1 0%;
  overflow: hidden; /* prevent overflow when resizing */
}

.canvasWrapper {
  position: relative; /* for axis system */
  width: 100%; /* fill container by default (unless size is passed in JSX) */
  height: 100%;
  margin: 0 auto;
  z-index: 0; /* To create a stacking context for the floatingToolbar */
}

.r3fRoot {
  background-color: var(--h5w-canvas--bgColor, transparent);
}

.floatingToolbar {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 1; /* for toolbar items to appear above visualizations (overflow, selectors) */
}
