﻿
/* CSS for the waiting div */
#waiting {
    position: fixed;
    width: 150px;
    height: 150px;
    top: 45%;
    left: 48%;
    color: white;
    background-color: rgba(94, 128, 50, 0.85); /* transparent dark green background */
    display: flex; /* Use flexbox layout */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    z-index: 9999; /* higher z-index to make sure it's on top */
}


/* CSS for the rotating circle */
/*test*/
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.spinner {
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #b2d732; /* Green */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

