﻿#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 16px solid #f3f3f3; /* cor do indicador */
    border-top: 16px solid #781D78; /* cor da parte do indicador que indica o progresso */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-interaction {
    pointer-events: none;
}

.iconsulta-modal-message {
    color: white;
    text-align: center;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 80%;
    min-width: 300px;
    padding: 30px;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.5;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}