/* Custom Pagination */
.custom-pagination-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
ul.pagination.custom-pagination {
    display: flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}
ul.pagination.custom-pagination > li {
    display: flex !important;
    float: none !important;
    margin: 0 !important;
}
ul.pagination.custom-pagination > li.p-prev {
    margin-right: auto !important;
}
ul.pagination.custom-pagination > li.p-next {
    margin-left: auto !important;
}
.pagination.custom-pagination > li > a,
.pagination.custom-pagination > li > span {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 48px !important;
    height: 40px !important;
    border-radius: 4px !important;
    border: 1px solid #b7b7b7 !important; /* Dark gray border */
    color: #000 !important; /* Black text */
    font-size: 17px !important;
    text-decoration: none !important;
    background-color: transparent !important;
    background-image: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
    float: none !important;
    padding: 0 !important;
    line-height: normal !important;
    margin: 0 !important;
}
.pagination.custom-pagination > li.p-dots > span {
    border: none !important;
    background-color: transparent !important;
    cursor: default !important;
    width: auto !important;
    min-width: 20px !important;
}
.pagination.custom-pagination > li.disabled > span,
.pagination.custom-pagination > li.disabled > a {
    opacity: 0.5 !important;
    cursor: default !important;
}
.pagination.custom-pagination > li:not(.disabled):not(.p-dots):hover > a,
.pagination.custom-pagination > li:not(.disabled):not(.p-dots):hover > span,
.pagination.custom-pagination > li.active > span,
.pagination.custom-pagination > li.active > a {
    border-color: #000 !important;
    text-decoration: underline !important;
    background-color: transparent !important;
    color: #000 !important;
}
