.loader-overlay {
    position: fixed;
    inset: 0;
    background-color: #FBEDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    .loader-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}

.loader-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
}

.loader-ring {
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}

.outer-ring {
    inset: 0;
    border-top-color: #9CBAF9;
    border-right-color: #B466CB;
    animation: spin 1s linear infinite;
}

.middle-ring {
    inset: 12px;
    border-bottom-color: #60CFC7;
    border-left-color: #379892;
    animation: spin 1.5s linear infinite reverse;
}

.loader-icon-container {
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(236, 167, 255, 0.3);
    transition: all 0.5s ease;
    background-color: #FBEDFF;
}

.loader-icon {
    font-size: 50px;
}

.loader-brand {
    font-size: 2.5rem;
    font-weight: 700;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.loader-subtitle {
    font-size: 14px;
    color: black; /* Dark green */
    margin-top: 15px;
    font-weight: 500;
}

@media (max-width: 576px) {
    .loader-brand {
        font-size: 2rem;
    }

    .loader-circle {
        width: 120px;
        height: 120px;
    }

    .loader-icon {
        font-size: 2rem;
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
} 
