/* Pagination Override */
.pagenation-box .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    /*margin: 2rem 0;*/
    padding: 0;
    list-style: none;
}

/* layout.css reset */
.pagenation-box .page-item {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
}

/* Default Link Style */
.pagenation-box .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: #a6a6a6;
    background: transparent;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1;
}

/* Hover Style */
.pagenation-box .page-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Active Style */
.pagenation-box .page-item.active .page-link {
    color: #fff;
    background: #fc4300;
    background: linear-gradient(135deg, #fc4300 0%, #ff5e00 100%);
    box-shadow: 0 2px 6px rgba(252, 67, 0, 0.4);
    font-weight: bold;
}

/* Disabled Style */
.pagenation-box .page-item.disabled .page-link {
    color: #444;
    background: transparent;
    cursor: default;
}

/* Arrows */
.pagenation-box .page-item:first-child .page-link,
.pagenation-box .page-item:last-child .page-link {
    font-size: 16px;
    color: #888;
}
.pagenation-box .page-item:first-child .page-link:hover,
.pagenation-box .page-item:last-child .page-link:hover {
    color: #fff;
}

/* Mobile Pager */
.pager {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.pager li {
    display: flex;
}
.pager li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}