
/* V344 — Phân trang Menu Khách hàng */
.v344-customer-list-tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  width:100%;
}
.v344-customer-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:11.5px;
  font-weight:650;
}
.v344-customer-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  padding:13px 2px 0;
  border-top:1px solid var(--border);
}
.v344-customer-page-info{
  font-size:11.5px;
  color:var(--muted-foreground);
}
.v344-customer-page-actions{
  display:flex;
  align-items:center;
  gap:7px;
}
.v344-customer-page-actions button{
  height:32px;
  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;
}
.v344-customer-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));
}
.v344-customer-page-actions button:disabled{
  opacity:.42;
  cursor:not-allowed;
}
.v344-customer-page-actions span{
  min-width:84px;
  text-align:center;
  font-size:11.5px;
  font-weight:750;
}
@media(max-width:700px){
  .v344-customer-list-tools{
    display:grid;
    grid-template-columns:1fr;
  }
  .v344-customer-list-tools>div{
    width:100%!important;
  }
  .v344-customer-page-size{
    width:100%;
    height:40px;
  }
  .v344-customer-pagination{
    display:grid;
    grid-template-columns:1fr;
    gap:9px;
  }
  .v344-customer-page-info{
    text-align:center;
  }
  .v344-customer-page-actions{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    width:100%;
  }
  .v344-customer-page-actions button{
    width:100%;
    min-width:0;
    height:38px;
  }
}
