.filters > .filter-field {
  display: grid;
  gap: 5px;
  width: auto;
  min-width: 0;
  margin-right: 0;
  flex: 0 1 176px;
}
.live-select { position: relative; min-width: 0; }
.live-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid #dce5ec;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition: border-color .15s, box-shadow .15s;
}
.live-select-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live-select-trigger::after {
  content: '';
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .15s;
}
.live-select-trigger:hover { border-color: #91b6e8; background: #fbfdff; }
.live-select-trigger:focus-visible,
.live-select-trigger[aria-expanded="true"] {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #2365f41a;
}
.live-select-trigger[aria-expanded="true"]::after { transform: translateY(2px) rotate(225deg); }
.live-select-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 0;
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5px;
  border: 1px solid #dce7f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px #12273d1c, 0 2px 6px #12273d08;
}
.live-select[data-placement="above"] .live-select-options { top: auto; bottom: calc(100% + 8px); }
.live-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.live-select-option[data-active="true"] { background: #f0f5fb; }
.live-select-option[aria-selected="true"] { color: #1955cb; background: #edf4ff; font-weight: 650; }
.live-select-option[aria-selected="true"]::after {
  content: '';
  flex: 0 0 5px;
  width: 5px;
  height: 9px;
  margin: 0 3px 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
@media (max-width: 900px) { .filters > .filter-field { flex: 1; } }
