.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  gap: 8px;
  flex-wrap: wrap;
  font-family: inherit;
}

.pagination_inner {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.4s ease;
}

.page_dot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f2f5f8;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #dbe2e6;
  transition: all 0.25s ease;
}

.page_dot:hover {
  background: #e6ecf5;
  transform: translateY(-2px);
}

.page_dot.active {
  background: #2453d4;
  color: #fff;
  border-color: #2453d4;
}

.page_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #dbe2e6;
  background: #f9fafb;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page_nav:hover {
  background: #e6ecf5;
}

.page_nav.disabled {
  opacity: 0.4;
  pointer-events: none;
}
