/** 
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#ff5733, #ffc107, #ff5733);
    animation: pulse 1.5s infinite ease-in-out;
    position: relative;
}

.spinner::before,
.spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

.spinner::before {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(255, 87, 51, 0.7);
    top: -10px;
    left: -10px;
    animation: pulse-ring 1.5s infinite ease-in-out;
}

.spinner::after {
    width: 100px;
    height: 100px;
    border: 5px solid rgba(255, 193, 7, 0.7);
    top: -20px;
    left: -20px;
    animation: pulse-ring 1.5s infinite ease-in-out 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
**/
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-container {
    position: relative;
    width: 130px;
    height: 130px;
}

.spinner-ring {
    width: 130px;
    height: 130px;
    border: 6px solid transparent;
    border-top: 6px solid #ff5733; /* Outer ring color */
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: #ffc107;
    width: 110px;
    height: 110px;
    top: 10px;
    left: 10px;
    animation-duration: 2s;
}

.spinner-ring:nth-child(3) {
    border-top-color: #3498db;
    width: 90px;
    height: 90px;
    top: 20px;
    left: 20px;
    animation-duration: 2.5s;
}

.spinner-logo {
    width: 111px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


