.loader {
    border: 10px solid #c2b1c4; /* Light grey */
    border-top: 10px solid #9c27b0; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-pagination {
    display: inline-block;
}

.custom-pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    margin:2pt;
}

.custom-pagination a.active {
    background-color: #9c27b0 !important;
    color: white;
    border-radius: 5px;
}

.custom-pagination a.done {
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
}

.custom-pagination a.noClick {
    pointer-events: none;
}

.custom-pagination a:hover:not(.active) {
    background-color: #ffc061;
    border-radius: 5px;
}