body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.container {
  display: flex;
}

.canvas-container {
  margin-right: 20px;
}

.controls {
  display: flex;
  flex-direction: column;
}

.x-axis-scale,
.y-axis-scale {
  position: absolute;
  background-color: #f0f0f0;
  pointer-events: none; /* Prevent interaction with scales */
}

.x-axis-scale {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px; /* Adjust the height of the x-axis scale */
  border-top: 1px solid #000;
  display: flex;
}

.y-axis-scale {
  top: 0;
  right: 0;
  height: 100%;
  width: 30px; /* Adjust the width of the y-axis scale */
  border-left: 1px solid #000;
  display: flex;
  flex-direction: column;
}

.scale-marker {
  position: absolute;
  background-color: #000;
  width: 2px; /* Adjust the width of the scale markers */
  height: 10px; /* Adjust the height of the scale markers */
}

#clearButton {
  margin-left: 10px; /* Adjust the spacing as needed */
}
