.scrollable-row {
display: flex; /* Aligns items in a row */
overflow-y: scroll; /* Enables vertical scrolling */
min-width: 430px; /* Sets a minimum width for the row */
max-width: 1000px; /* Ensures the row does not exceed the container width */
margin-right: 0; /* Adjusts margin as needed */
}

.scrollable-row::-webkit-scrollbar {
    display: none;
}


.scrollable-row {
      -ms-overflow-style: none; 
    scrollbar-width: none;    
  }