.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212121;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@keyframes loading-wave {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.loading-dots {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    animation: loading-bounce 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loading-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.mud-nav-item.main-nav-link {
    width: fit-content !important;
    margin-right: 6px;
}

.mud-nav-item.main-nav-link a {
    border-radius: 6px;
}

.mud-nav-item a.active {
    background-color: DodgerBlue !important;
}

.dark-card {
    background-color: #252525;
}