.searchable-dropdown {
  position: relative;
  width: 100%;
}

.searchable-dropdown__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 2px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.searchable-dropdown__option {
  padding: 8px 12px;
  cursor: pointer;
}

.searchable-dropdown__option:hover {
  background-color: #f0f0f0;
}
