


    /* Pagination Styling */
    .pagination {
        display: flex;
        justify-content: center;
        padding: 10px 0;
        list-style-type: none;
    }

    .lqd-icn-ess {
        vertical-align: middle;
    }

    .pagination .page-link {
        display: inline-block;
        padding: 8px 12px;
        text-decoration: none;
        color: var(--aiub-blue);
        border: 1px solid #ddd;
        border-radius: 4px;
        transition: background-color 0.3s, color 0.3s;
    }



    /* Notification Card Styling */
    .notification {
        position: relative;
        height: 90px;
        text-align: left;
        display: flex;
        background-color: white;
        overflow: hidden;
        margin-top: 17px;
    }



    .notification-text {
        flex: 1;
        padding-left: 10px;
        padding-top: 5px;
    }

    .date-custom {
        color: white;
    }

    .notification-text .title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .notification-text .desc {
        color: #666;
        margin-bottom: 15px;
    }

    .notification-text .info-link {
        color: var(--aiub-blue);
        text-decoration: none;
    }



    /* Previous and Next Buttons */
    .pager {
        display: flex;
        padding-top: 20px;
        list-style: none;
    }

        .pager li a {
            text-decoration: none;
            color: var(--aiub-blue);
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s;
        }

            .pager li a:hover, .pagination li.page-item a:hover, .pagination > li.page-item.active > a {
                background-color: var(--aiub-blue);
                color: white;
            }


    .info-link div {
        display: block;
        position: absolute;
        background: transparent;
        color: transparent;
        font-size: 20px;
        font-weight: 700;
        width: 100%;
        height: 100%;
        /*! margin-top: -107px;
        padding: 6% 0%;*/
        text-align: center;
        transition: background 0.3s, color 0.3s;
    }

    .notification:hover .info-link div {
        background: rgba(255,255,255,.8);
        color: #004ea8 !important;
        text-shadow: 2px 1px 5px #fff;
        transition: background 0.3s, color 0.3s;
        left: 50%; /* Center horizontally */
        top: 50%; /* Center vertically */
        transform: translate(-50%, -50%);
        z-index: 10; /* Ensure visibility over other elements */
    }

    .info-link .info-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
    }

    ul.pagination {
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .1em;
        padding-top: 20px;
    }
