.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  font-family: sans-serif;
  list-style: none;
  padding: 0;
}

/* LI chính là vòng tròn */
.pagination>li.page-item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden; /* để thằng A không tràn ra ngoài */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nút thực tế là A - set full size */
.pagination>li>a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  color: #1d7ed0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 500;
}

/* Active */
.pagination li.active a {
  background: #1d7ed0;
  color: #ffffff;
  font-weight: 600;
}

/* Hover */
.pagination li:not(.active):not(.disabled) a:hover {
  background: #20c997;
  color: #ffffff;
}

/* Disabled */
.pagination li.disabled a {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dấu ... nếu có */
.pagination .dots {
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0 0.5rem;
  color: #666;
}
