.po-item-filter-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(150px,1fr)) auto;
  align-items:end;
  gap:8px;
  padding:10px;
  border:1px solid #c7d7e1;
  border-radius:9px;
  background:#f5f9fb;
}

.po-item-filter-row label{
  display:grid;
  gap:4px;
  min-width:0;
  color:var(--navy);
  font-size:11px;
  font-weight:700;
}

.po-item-filter-row select{
  width:100%;
  min-width:0;
  min-height:39px;
  border:1px solid #9fb6c5;
  border-radius:7px;
  background:#fff;
  color:#263f52;
  font-size:12px;
}

.po-item-filter-row select:focus{
  border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(15,61,94,.12);
  outline:0;
}

.po-item-filter-clear{
  min-height:39px;
  white-space:nowrap;
}

.po-item-linked-badge{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:2px 6px;
  border-radius:999px;
  background:#dff3e8;
  color:#1f6a47;
  font-size:10px;
  font-style:normal;
  font-weight:700;
  line-height:1.35;
}

.po-item-load-more{
  position:sticky;
  bottom:0;
  z-index:2;
  display:flex;
  justify-content:center;
  padding:10px;
  border-top:1px solid var(--line);
  background:#f3f8fb;
}

.po-item-load-more .button{
  min-width:220px;
}

@media(max-width:900px){
  .po-item-filter-row{
    grid-template-columns:repeat(2,minmax(150px,1fr));
  }

  .po-item-filter-clear{
    width:100%;
  }
}

@media(max-width:640px){
  .po-item-filter-row{
    grid-template-columns:1fr;
  }
}
