#throbber_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.nuis-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nuis-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc; /* Outer border */
    border-top: 5px solid #007bff; /* Spinning color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#nuis-loader-text {
    margin-top: 10px;
    color: #3b3838;
    font-size: 12px;
    text-align: center;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}