
/* V341 — Pagination danh sách Hóa đơn VAT */
.v341-vat-page-size{
  height:36px;
  min-width:112px;
  border:1px solid var(--border);
  border-radius:6px;
  background:var(--background);
  color:var(--foreground);
  padding:0 9px;
  font-size:12px;
  outline:none;
}
.v341-vat-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  padding:12px 2px 2px;
  border-top:1px solid var(--border);
}
.v341-vat-page-info{
  color:var(--muted-foreground);
  font-size:11.5px;
}
.v341-vat-page-actions{
  display:flex;
  align-items:center;
  gap:7px;
}
.v341-vat-page-actions button{
  height:32px;
  min-width:70px;
  border:1px solid var(--border);
  border-radius:6px;
  background:var(--background);
  color:var(--foreground);
  padding:0 10px;
  font-size:11.5px;
  font-weight:700;
}
.v341-vat-page-actions button:hover:not(:disabled){
  border-color:color-mix(in srgb,var(--brand-green) 45%,var(--border));
  background:color-mix(in srgb,var(--brand-green) 5%,var(--background));
}
.v341-vat-page-actions button:disabled{
  opacity:.42;
  cursor:not-allowed;
}
.v341-vat-page-actions span{
  min-width:82px;
  text-align:center;
  font-size:11.5px;
  font-weight:750;
}
@media(max-width:640px){
  .v341-vat-page-size{
    width:100%;
    height:40px;
  }
  .v341-vat-pagination{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
    padding-top:12px;
  }
  .v341-vat-page-info{
    text-align:center;
  }
  .v341-vat-page-actions{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    width:100%;
  }
  .v341-vat-page-actions button{
    width:100%;
    min-width:0;
    height:38px;
  }
}
