/* Dropdown styles */
.dropdown-menu {
  max-height: calc(100vh - 60px); /* Viewport height minus header height */
  overflow-y: auto;
  margin-top: 0.5rem;
}

/* Scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: var(--bs-gray-200);
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bs-gray-400);
  border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--bs-gray-500);
}

/* Mobile responsive adjustments for regulation dropdown */
@media (max-width: 576px) {
  .dropdown-center .dropdown-menu,
  #regulationDropdown {
    transform: translateX(-35%) !important;
  }
  #searchDropdown {
    transform: translateX(-25%) !important;
  }
}
