.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.pagination a, .pagination span {
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  transition: background 0.3s, color 0.3s;
  min-width: 40px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination a:hover {
  background: #f0f0f0;
}

.pagination a.active {
  background: #001648;
  color: #fff;
  border-color: #001648;
  pointer-events: none;
}

/* Specific styling for page numbers container */
#pageNumbers {
  display: flex;
  gap: 8px;
  border: none;
  padding: 0;
  min-width: auto;
}

/* Individual page number buttons */
#pageNumbers a {
  min-width: 40px;
  padding: 8px 12px;
}

/* Arrow buttons */
#prev, #next {
  font-weight: bold;
  min-width: 40px;
}
