/* templates/pagination.html */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* 適切なマージンを設定してください */
}
.pagination li {
    list-style: none;
    margin: 0 10px;
    font-size: 25px; /* ページ番号のフォントサイズを調整 */
}
.pagination a {
    text-decoration: none;
}
.pagination .page-item.active a {
    background-color: #007bff; /* アクティブなページの背景色を変更 */
    color: #fff; /* アクティブなページのテキスト色を変更 */
    border-color: #007bff; /* アクティブなページのボーダー色を変更 */
}

