/* === Pager inline layout === */
.js-pager__items {
  display: flex;               /* στοιχίζει τα στοιχεία οριζόντια */
  justify-content: center;     /* τα κεντράρει οριζόντια */
  align-items: center;         /* τα στοιχίζει κάθετα */
  gap: 15px;                   /* απόσταση ανάμεσα στα στοιχεία */
  list-style: none;            /* αφαιρεί bullets */
  padding: 0;
  margin: 20px 0;
}

.js-pager__items li {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #003366;
}

.js-pager__items a {
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  transition: color 0.2s ease;
}

.js-pager__items a:hover {
  color: #0059b3;
}
