.pagination {
  display: flex;
  gap: 10px; /* ボタン間の隙間を少し詰める */
  justify-content: center;
  padding: 20px 0; /* ページネーション全体の上下余白 */
}

/* ページネーションのボタンとスパンの共通スタイル */
.pagination a,
.pagination span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px; /* 高さと合わせ、文字を中央揃え */
  border-radius: 50%; /* 円形 */
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;

  /* --- テーマカラー(緑)を適用 --- */
  background-color: transparent; /* 背景は透明 */
  color: rgb(0, 255, 0); /* 文字色を緑に */
  border: 1px solid rgba(0, 255, 0, 0.5); /* 枠線を緑に */
  
  /* --- アニメーション設定 --- */
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

/* マウスホバー時 (リンクのみ) */
.pagination a:hover {
  background-color: rgb(0, 255, 0); /* 背景を緑に (反転) */
  color: #111; /* 文字色を黒に (反転) */
  
  /* --- グロー（発光）エフェクト --- */
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
  cursor: pointer;
}

/* 現在のページ (アクティブ) */
.pagination .active-page {
  background-color: rgb(0, 255, 0); /* 背景を緑に */
  color: #111; /* 文字色を黒に */
  border-color: rgb(0, 255, 0);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6); /* アクティブ時は常時グロー */
}

/* ... (ドット) のスタイル */
.pagination .dots {
  /* ドットは枠線と背景を消し、文字だけにする */
  background-color: transparent;
  border: none;
  color: rgb(0, 255, 0);
  box-shadow: none;
  /* ホバーエフェクトやクリックを無効化 */
  pointer-events: none; 
}