.searchable-select__input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}

.searchable-select__input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
}

.searchable-select__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.searchable-select__dropdown--open {
  display: block;
}

.searchable-select__item {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.1s;
}

.searchable-select__item:hover,
.searchable-select__item--highlighted {
  background-color: #eef2ff;
}

.searchable-select__industry {
  color: #6b7280;
  font-size: 0.8rem;
}

.searchable-select__empty {
  padding: 0.75rem;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
}

.searchable-select__selected {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  font-size: 0.875rem;
  min-height: 36px;
  box-sizing: border-box;
}

.searchable-select__selected-name {
  flex: 1;
  font-weight: 500;
}

.searchable-select__clear {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
}

.searchable-select__clear:hover {
  color: #ef4444;
}
