﻿/* Background Overlay */
#loading-div-background {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 9999999;
    /* this makes loader center, safe */
    display: none;
    align-items: center;
    justify-content: center;
}

/* Loader Box */
#loading-div {
    background: #ffffff;
    padding: 28px 40px;
    border-radius: 14px;
    box-shadow: 0px 6px 28px rgba(0,0,0,0.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* CSS Spinner */
.process-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e5e5;
    border-top-color: #4556b7;
    border-radius: 50%;
    animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.textspan {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
