/* Directory search box.
   ⭐ The pill shape and the button sitting inside the field come from her
   Lovable comp. ⛔ Do not swap this for Bootstrap's input-group: that squares
   off the inner corners, which is the whole look. */
.ff-search__inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .35rem .35rem 1.25rem;
  border: 1px solid rgba(57, 94, 161, .25);
  border-radius: 62.4375rem;
  background: #fff;
}

.ff-search__input {
  flex: 1 1 auto;
  min-inline-size: 0;
  border: 0;
  background: transparent;
  padding: .5rem 0;
  font-size: 1rem;
  color: #080D17;
}

.ff-search__input::placeholder { color: #7d8ba6; }

.ff-search__input:focus {
  outline: 0;
}

.ff-search__inner:focus-within {
  border-color: rgba(57, 94, 161, .55);
  box-shadow: 0 0 0 4px rgba(57, 94, 161, .12);
}

.ff-search__button {
  flex: 0 0 auto;
  border-radius: 62.4375rem;
  padding-inline: 1.5rem;
}

/* Chrome and Safari draw their own clear button on type=search. */
.ff-search__input::-webkit-search-decoration,
.ff-search__input::-webkit-search-cancel-button { -webkit-appearance: none; }
