/* Overlay que cobre a tela */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Ocultar o overlay inicialmente */
.hidden {
    display: none;
}

/* Spinner container */
.spinner {
    text-align: center;
    color: white;
}

/* Texto de carregando */
.loading-text {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Bolinha girando */
.spinner-circle {
    width: 90px;
    height: 90px;
    /* border: 4px solid transparent; */
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animação de giro */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}