.jsPagerCt .pagination-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.jsPagerCt .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .jsPagerCt .pagination li {
        margin: 0;
    }

    .jsPagerCt .pagination a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #3498db;
        background: white;
        border: 1px solid #e0e0e0;
        border-right: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .jsPagerCt .pagination li:last-child a {
        border-right: 1px solid #e0e0e0;
    }

    .jsPagerCt .pagination a:hover {
        background: #f1f8ff;
    }

    .jsPagerCt .pagination .active a {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }

    .jsPagerCt .pagination .disabled a {
        color: #bdc3c7;
        cursor: not-allowed;
        background: #f5f5f5;
    }

        .jsPagerCt .pagination .disabled a:hover {
            background: #f5f5f5;
        }

    .jsPagerCt .pagination .ellipsis {
        padding: 10px 5px;
        background: white;
        border: 1px solid #e0e0e0;
        border-right: none;
        color: #7f8c8d;
    }
