/* Custom Dropdown Menu Styles */

/* Dropdown container */
.destinations-dropdown {
  position: relative !important;
}

/* Dropdown label with arrow */
.dropdown-label {
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
}

/* Arrow styling */
.dropdown-arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Dropdown content (hidden by default) */
.destinations-dropdown-content {
  display: none !important;
  position: absolute !important;
  background-color: #fff !important;
  min-width: 160px !important;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2) !important;
  z-index: 1000 !important;
  border-radius: 4px !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 5px !important;
}

/* Show dropdown on hover */
.destinations-dropdown:hover .destinations-dropdown-content {
  display: block !important;
}

/* Rotate arrow when dropdown is open */
.destinations-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Links inside the dropdown */
.destination-item {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
}

/* Change color on hover */
.destination-item:hover {
  background-color: #f1f1f1;
}
