.scrollable-content {
    height: 510px; /* Set an appropriate height */
    overflow-y: auto; /* Enable vertical scrolling */
    padding-right: 5px; /* Add some padding for the scrollbar */
  }
  
  /* Optional: Style the scrollbar for WebKit browsers */
  .scrollable-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .scrollable-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  
  .scrollable-content::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.05);
  }