/* ページネーションの親コンテナ */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* `.nav-links` の中の要素を横並びにする */
.pagination-container .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ページネーションの各ボタン */
.pagination-container .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #efefef;
  color: #000;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

/* 現在のページ */
.pagination-container .current {
  background: #54b554; /* 緑 */
  color: #fff;
  font-weight: bold;
}

/* ホバー時のスタイル */
.pagination-container a:hover {
  background: #cbe8cb;
  color: #54b554;
}
