#wrapper-canvas canvas {
    max-width: 100%;
}
#wrapper-canvas {
  pointer-events: auto;
  overflow: auto;
  width: 100%;
  height: 100vh;
}
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #4169E1; /* Royal blue color */
    border-radius: 4px; /* Rounded corners */
  }
  
  ::-webkit-scrollbar-track {
    background-color: #000000; /* Black background for the track */
  }
  
  /* For Firefox */
  scrollbar-width: thin; /* Make the scrollbar thinner */
  scrollbar-color: #4169E1 #000000; /* Royal blue thumb and black track */
  