.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #6d3aaf 10%, #000000 100%);
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
}

.loading-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Roboto', sans-serif;
}

.loading-logo {
    animation: battement 1s alternate infinite;
}

@keyframes battement {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    85% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.loading-popup h3 {
    background-color: whitesmoke !important;
    font-family: 'Roboto', sans-serif;
}

.pagination-block {
    position: sticky;
    bottom: 50px;
}