﻿/* Pagination container */
.ps-pagination {
    text-align: center;
    margin: 15px 0;
}

    /* All pager items */
    .ps-pagination a,
    .ps-pagination span {
        display: inline-block;
        margin: 0 4px;
        padding: 8px 14px;
        border-radius: 50%;
        background: #f5f5f5;
        color: #123480;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s ease-in-out;
    }

    /* Active page */
    .ps-pagination .current {
        background: #123480;
        color: #fff !important;
        font-weight: bold;
    }

    /* Hover effect */
    .ps-pagination a:hover {
        background: #123480;
        color: #fff;
    }
