/* ✅ Dropdown Hidden Initially */
.dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;  /* Changed to solid white */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 999;
  max-height: 280px;
  overflow-y: auto;
  padding: 10px 0;
}

/* ✅ Show on Hover */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}
/* ✅ Dropdown Items with Less Padding */
.dropdown-menu li a {
  padding: 8px 16px;        /* 🔽 Reduced from 12px 20px */
  color: #333;
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 6px;       /* 🔄 Slightly smaller for tighter look */
}

.dropdown-menu li a:hover {
  background-color: white;
  color: #fff;
}

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

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;

  
}

.options li a{
  margin: 5px !important;
  color: black !important;

}

.options li a:hover{
  color: #007aff !important;
}