.leaf-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    visibility: visible;
}

.leaf-spinner-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.leaf-spinner-icon {
    width: 80px;
    height: 80px;
    background-image: url('../../assets/img/logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: leaf-pulse 1.5s infinite ease-in-out;
}

@keyframes leaf-pulse {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: scale(0.8) rotate(360deg);
        opacity: 0.7;
    }
}