

/* ページネーション全体の中央揃え */
#pagination {
    display: flex;
    justify-content: center;   /* 中央寄せ */
    align-items: center;
    gap: 8px;                  /* ボタン間の余白 */
    width: 100%;
    background: #F7F6F2;
    max-width: 960px;
    border-radius: 16px;
    padding: 10px;
    margin: 0 auto 16px; 
}

/* クリック可能な部分 */
.page-clickable {
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    background: #f7f7f7;
    transition: background 0.2s, transform 0.1s;
}

.page-clickable:hover {
    background: #e1e1e1;
    transform: translateY(-1px);
}

/* 現在ページ */
.page-active {
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 5px;
    background: #f7f7f7;
}

/* 無効状態（クリックできない） */
.page-disabled {
    opacity: 0.4;
    padding: 6px 10px;
}


/* ページ番号全体をレコード領域の一部に見せる */
.pagination {
    text-align: center;
}
