.my-pagination {
    display: inline-flex;
    list-style: none;
    padding-left: 0;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    /*margin: 1rem 0;*/
}
.pagination-summary {
    display: inline-block;
    padding: 8px 14px;
    color: #6c757d !important; /* Bootstrap gray */
    font-size: 0.875rem;
    /*margin: 1rem 0;*/
}

.my-page-item {
    /* Each page item shares the border */
}

.my-page-link {
    display: block;
    padding: 8px 14px;
    color: #0d6efd; /* Bootstrap blue */
    text-decoration: none;
    border-right: 1px solid #dee2e6;
    font-weight: 500;
    font-size: 1rem;
    user-select: none;
    transition: background-color 0.15s ease;
}

/*.my-page-link:last-child {*/
/*    border-right: none; !* No border on the last item *!*/
/*}*/

.my-page-link:hover {
    background-color: #e7f1ff;
    color: #0a58ca;
}

.my-page-item.active .my-page-link {
    background-color: #0d6efd;
    color: white;
    cursor: default;
    pointer-events: none;
}

.my-page-item.disabled .my-page-link {
    color: #6c757d;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f8f9fa;
}
