.searchable-select {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.searchable-select-input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid #d0d4d8;
  border-radius: 6px;
  font: inherit;
  color: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.searchable-select-input:focus {
  outline: none;
  border-color: #1b4d8e;
  box-shadow: 0 0 0 3px rgba(27, 77, 142, 0.1);
}

.searchable-select select {
  margin: 0;
}
