
/* V351 — Phân trang danh sách trong Menu Xuất báo cáo */
.v351-export-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--border);
}
.v351-export-page-info{
  min-width:0;
  font-size:11.5px;
  line-height:1.45;
  color:var(--muted-foreground);
}
.v351-export-page-actions{
  display:flex;
  align-items:center;
  gap:7px;
  flex-shrink:0;
}
.v351-export-page-size{
  height:34px;
  min-width:108px;
  border:1px solid var(--border);
  border-radius:6px;
  background:var(--background);
  color:var(--foreground);
  padding:0 8px;
  font-size:11.5px;
  font-weight:700;
}
.v351-export-page-actions button{
  height:34px;
  min-width:72px;
  border:1px solid var(--border);
  border-radius:6px;
  background:var(--background);
  color:var(--foreground);
  padding:0 10px;
  font-size:11.5px;
  font-weight:700;
}
.v351-export-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));
}
.v351-export-page-actions button:disabled{
  opacity:.42;
  cursor:not-allowed;
}
.v351-export-page-actions span{
  min-width:84px;
  text-align:center;
  white-space:nowrap;
  font-size:11.5px;
  font-weight:750;
}
@media(max-width:800px){
  .v351-export-pagination{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
  }
  .v351-export-page-info{
    text-align:center;
  }
  .v351-export-page-actions{
    display:grid;
    grid-template-columns:1fr 1fr auto 1fr;
    width:100%;
  }
  .v351-export-page-size,
  .v351-export-page-actions button{
    width:100%;
    min-width:0;
    height:40px;
  }
}
@media(max-width:480px){
  .v351-export-page-actions{
    grid-template-columns:1fr 1fr;
  }
  .v351-export-page-actions span{
    grid-column:1/-1;
    grid-row:1;
    min-height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .v351-export-page-size{
    grid-column:1/-1;
  }
}
