﻿.loading-page {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
/*    background-color: rgba(255,255,255,0.3)*/
}
.loader-wrapper {
    width: 80px;
    height: 80px;
    background-color: #d1b9d9; /* Light purple background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top: 4px solid #7b1fa2; /* Dark purple */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
}

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

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