.div-pagination nav {
    margin: 50px auto 100px auto;
    /* Asigură centrare */
    display: flex;
    /* Activează flexbox */
    justify-content: center;
    /* Centrează direct */
}

.pagination {
    margin-bottom: 0;
    padding-bottom: 0;
}


.page-item.active .page-link {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {}