#renderCanvas {
  width: 100%;
  height: 90vh;
  touch-action: none;
}

#canvasZone {
  width: 100%;
  height: 95%;
}

.slidecontainer {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Opcional: centra verticalmente si quieres */
  width: 100%; /* Width of the outside container */
  margin: 10px;
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  margin: auto;
  appearance: none;
  width: 95%; /* Full-width */
  height: 3%; /* Specified height */
  border-radius: 12px;  /* Round */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  border-radius: 50%;
  background: #115DC0; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  border-radius: 50%;
  background: #115DC0; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
