﻿
/* 分頁容器置中 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px; /* 按鈕之間的間距 */
}

.page-item a, .page-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    color: #F26321; /* 你的品牌主色 */
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #fff;
    font-weight: 500;
}

    /* 滑鼠移入效果 */
    .page-item a:hover {
        background-color: #e9ecef;
        border-color: #adb5bd;
        color: #0056b3;
    }

/* 當前頁面樣式 (Active) */
.page-item.active a {
    background-color: #F26321; /* 建議換成 Zoetis 的深藍色 */
    border-color: #F26321;
    color: #fff !important;
    cursor: default;
}

/* 省略號 (...) 的樣式 */
.page-item.disabled span {
    color: #6c757d;
    border: none;
    background: transparent;
    cursor: default;
}

/* 手機版適應：縮小尺寸避免跑版 */
@media (max-width: 576px) {
    .page-item a {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 14px;
    }
}
