/* Search-page usability: keep filters and column labels visible while browsing long result sets. */
form.filters[action="/search"] {
  position: sticky;
  top: 66px;
  z-index: 3;
  flex-wrap: wrap;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(29, 36, 48, 0.08);
}

.search-results-wrap {
  max-height: min(65vh, 680px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overscroll-behavior: contain;
}

.search-results-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--panel);
  box-shadow: inset 0 -1px 0 var(--line);
}

@media (max-width: 760px) {
  form.filters[action="/search"] {
    top: 62px;
  }

  .search-results-wrap {
    max-height: 62vh;
  }
}
