
.custom-dropdown-wrapper {
  margin-bottom: 1.5rem;
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown-selected {
  background-color: #222;
  padding: 0.5rem;
  cursor: pointer;
  border: 1px solid #00ccff;
  border-radius: 4px;
  color: #00ccff;
}

.custom-dropdown-list {
  max-height: 200px;
  overflow-y: auto;
  background: #111;
  border: 1px solid #00ccff;
  border-radius: 4px;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 100;
  margin-top: 0.25rem;
}

.custom-dropdown.open .custom-dropdown-list {
  display: block;
}

.custom-dropdown-list li {
  padding: 0.5rem;
  cursor: pointer;
  color: #ccc;
}

.custom-dropdown-list li:hover,
.custom-dropdown-list li.selected {
  background-color: #00ccff;
  color: #000;
}

.az-selector {
  margin: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.az-button {
  padding: 0.25rem 0.5rem;
  border: 1px solid #00ccff;
  background: #111;
  color: #00ccff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 0.9rem;
}
