﻿
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    opacity: 0.9;
    z-index: 9999;
    display: none;
}

/* Spinner Styles */
.spinner {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    border: 8px solid #ccc;
    border-top-color: rgba(185, 130, 49, 1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.waiting {
    position: absolute;
    top: 55%;
    left: 50%;
    margin-left: -90px;
    color: rgba(185, 130, 49, 1);
    font-size: 36px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#results {
    margin-top: 20px;
}


