/* Define the canvas container with a gray background */
.canvas-container {
  overflow-y: scroll;
  width: 100%;
  position: relative;
  overflow-y: scroll;
}

.canvas-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.canvas-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Define the canvas with a dotted pattern */
canvas {
  background-color: rgba(245, 245, 245, 0.062745098);
  width: 100%;
  margin: 0;
  display: block;
  position: relative;
}

.modal {
  position: absolute;
  display: none;
  background-color: rgb(92, 107, 154);
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
  max-width: 15%;
  border-radius: 10px;
}/*# sourceMappingURL=canvas-style.css.map */