.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown .pill-link {
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  width: 100%;
  text-align: center;
  padding: inherit;
  color: inherit;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-align: center;
}

.dropdown-content a:hover {
  background: #f3f3f3;
}

.custom-dropdown:hover .dropdown-content {
  display: block;
}