/* Match the browse filters used on Analysis. */
.page-filters{
  display:grid;
  grid-template-columns:minmax(240px,2fr) repeat(2,minmax(150px,1fr));
  gap:12px;
  max-width:940px;
  margin-top:30px;
}
.page-filters label,.page-search{
  min-width:0;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}
.page-filters input,.page-filters select,.page-search input{
  display:block;
  width:100%;
  min-width:0;
  margin-top:6px;
  padding:11px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--card);
  color:var(--ink);
}
.page-search{
  display:block;
  width:min(420px,100%);
  margin-top:30px;
}
@media(max-width:800px){
  .page-filters{grid-template-columns:repeat(2,minmax(0,1fr))}
  .page-filters label:first-child{grid-column:1 / -1}
}
@media(max-width:520px){
  .page-filters{grid-template-columns:1fr}
  .page-filters label:first-child{grid-column:auto}
}
