/* Dropdown base */
.custom-dropdown {
  display: inline-block;
  z-index: 10000;
}

.custom-dropdown button {
  background: #6c757d;
  color: #fff;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.custom-dropdown-menu {
  display: none;
  min-width: 120px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 10001;
}

.custom-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
}

.custom-dropdown-menu a:hover {
  background-color: #f8f9fa;
}

/* Desktop & tablets: show on hover */
@media (min-width: 768px) {
  .custom-dropdown:hover .custom-dropdown-menu {
    display: block;
  }
}

/* Mobile: show only when JS toggles the class */
@media (max-width: 767px) {
  .custom-dropdown-menu.show {
    display: block;
  }
}
