/* Default max-height for larger screens */
.dropdown-menu {
  max-height: calc(85vh - 100px);
  overflow-y: auto;
}

/* Smaller max-height for mobile devices */
@media (max-width: 576px) {
  .dropdown-menu {
    max-height: calc(80vh - 500px); 
    overflow-y: auto;
  }
}