.mud-main-content {
    min-height: 100vh;
}

.loader-container {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(255,255,255,0.8);
}

.container {
    text-align: center;
}

.loader-image {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: pulseOpacity 1.5s infinite ease-in-out;
}

@keyframes pulseOpacity {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.loader-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #424242;
}