﻿.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 15050; /* Make sure this is higher than any other content */
    display: none; /* Hidden by default */
    display: flex; /* Use flexbox to center spinner */
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent scrollbars when spinner is active */
}

.spinner {
    border: 5px solid #fccca0;
    border-top: 7px solid #66B94F;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
