
.v439s-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  padding:10px 2px 2px;
  border-top:1px solid var(--border);
}
.v439s-page-info{
  color:var(--muted-foreground);
}
.v439s-page-controls{
  display:flex;
  align-items:center;
  gap:5px;
}
.v439s-page-controls button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 8px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--background);
  color:var(--foreground);
  font-weight:700;
  cursor:pointer;
}
.v439s-page-controls button.active{
  border-color:#f59e0b;
  background:#fff7ed;
  color:#c2410c;
}
.v439s-page-controls button:disabled{
  opacity:.4;
  cursor:not-allowed;
}
@media(min-width:761px){
  .v439s-pagination,
  .v439s-pagination *{
    font-size:14px!important;
  }
}
@media(max-width:760px){
  .v439s-pagination{
    align-items:stretch;
    flex-direction:column;
    gap:8px;
    padding-top:9px;
  }
  .v439s-page-info{
    text-align:center;
    font-size:9px;
  }
  .v439s-page-controls{
    justify-content:center;
    flex-wrap:wrap;
  }
  .v439s-page-controls button{
    min-width:34px;
    height:34px;
    font-size:10px;
  }
}
