/* Enable horizontal scroll on this row */
.horizontal-scroll-row {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
/* Optional: prevent awkward wrapping of content (like tables) inside */
.horizontal-scroll-row > * {
    min-width: 700px; /* or whatever fits your content */
    white-space: nowrap;
}
.horizontal-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
  width: 100%;
}