﻿.mud-loading-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.85); /* branco translúcido */
    min-height: 200px;
    z-index: 9999;
}

.mud-loading-container {
    display: flex;
    flex-direction: column; /* empilha em coluna */
    align-items: center;
    justify-content: center;
}

.mud-animate-spin {
    animation: spin 1.2s linear infinite;
}

.blur-custom-class {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.5);
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

