
 @media screen and (min-width: 992px) {
    header.header .ul-contact {
        justify-content: end;
    }
}
.title-page-search span {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.toolbox-pagination .pagination{
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 20px 0;
  align-items: center;
}

/* Li mỗi item */
.toolbox-pagination .page-item {
  display: inline-block;
}

/* Link trong item */
.toolbox-pagination .page-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background: transparent;
  border: 1px solid #eee;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all .18s ease;
  box-sizing: border-box;
}

/* hover/focus */
.toolbox-pagination .page-link:hover,
.toolbox-pagination .page-link:focus{
  color: #fff;
  background: #058648;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(5,134,72,0.12);
}

/* active (trang hiện tại) */
.toolbox-pagination .page-item.active .page-link,
.toolbox-pagination .page-item.active .page-link:hover{
  color: #fff;
  background: #058648;
  border-color: rgba(5,134,72,0.95);
  font-weight: 600;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* disabled */
.toolbox-pagination .page-item.disabled .page-link{
  color: #9aa39a;
  background: var(--muted);
  border-color: transparent;
  cursor: not-allowed;
  opacity: 0.8;
  transform: none;
}

/* dạng nhỏ / compact */
.toolbox-pagination.small .page-link{
  min-width: 30px;
  height: 30px;
  font-size: 13px;
  border-radius: 4px;
}

/* mũi tên prev/next (nếu dùng icon) */
.toolbox-pagination .page-link .icon{
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}

/* accessibility: giữ sr-only text hiển thị cho screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
  white-space: nowrap;
}

/* Responsive: đảm bảo touch target đủ lớn trên mobile */
@media (max-width: 480px){
  .toolbox-pagination .page-link{
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
  }
}