/* ── SearchBox — live text search input for filter bars ───────────────── */

.search-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 0 10px 0 32px;
  height: 36px;
  min-width: 220px;
  transition: border-color .12s ease, background .12s ease;
}

.search-box:focus-within {
  border-color: #3AA7E2;
  background: rgba(255, 255, 255, .06);
}

.search-box--right {
  margin-left: auto;
}

.search-box__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8794a8;
  pointer-events: none;
}

.search-box:focus-within .search-box__icon {
  color: #3AA7E2;
}

.search-box__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #DCE4F0;
  font-size: 13px;
  font-family: inherit;
  padding: 0;
  height: 100%;
  min-width: 0;
}

.search-box__input::placeholder {
  color: #8794a8;
  opacity: 1;
}
