.scrollable-column {
  position: relative;
  max-height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: auto;
  scrollbar-color: #888 #f1f1f1;
  padding-bottom: 40px; /* space for the arrow */
}

/* Scrollbar styling (Chrome, Edge, Safari) */
.scrollable-column::-webkit-scrollbar {
  width: 10px;
  background-color: #f1f1f1;
}

.scrollable-column::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

/* Read More Arrow */
.scrollable-column::after {
  content: "↓";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #666;
  opacity: 0.7;
  animation: bounce 1.5s infinite;
  pointer-events: none;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

/* Optional: hide the arrow when scrolled to bottom */
.scrollable-column.hide-arrow::after {
  display: none;
}