.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(36, 162, 65, 0.564); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* backdrop-filter: blur(10px); */
    /* Optional: Frosted glass effect */
}

/* Spinner animation */
.spinner {
    /* border: 4px solid #f3f3f3;
border-top: 4px solid #3498db; */
    /* border-radius: 50%; */
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Add scaling effect */
@keyframes spin {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1.4);
    }

    75% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}