﻿.spinner-wrapper {
    position: relative;
}

.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 67%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.content-hidden {
    opacity: 0;
}

.content-visible {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3fb44c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}