.slider-container {
    width: 100%;
    overflow: auto;
    position: relative;
  }
  
  .slider {
    width: fit-content;
    height: 100%;
    cursor: grab;
    white-space: nowrap;
    transition: transform 0.3s ease;
  }
  
  img#image {
    pointer-events: none;
    max-width: none;
  }
  
  .slider.dragging {
    cursor: grabbing;
  }
  