a.custom-link {
    color: white !important;
    text-decoration: underline !important;
}

    a.custom-link:hover {
        text-decoration: none !important;
    }

li {
    margin-left: 20px;
}

html, body, #app {
    height: 100%;
    margin: 0;
}

main, .mud-main-content{
    height: 100%;
}


#components-reconnect-modal {
    display: none;
}

    #components-reconnect-modal.components-reconnect-show,
    #components-reconnect-modal.components-reconnect-failed,
    #components-reconnect-modal.components-reconnect-rejected {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #000000 !important;
        color: #ffffff !important;
        padding: 24px 32px;
        border-radius: 12px;
        box-shadow: 8px 8px 20px rgba(255, 255, 255, 0.3), 0 0 0 3px #ff6b35;
        text-align: center;
        font-weight: 500;
        font-size: 14px;
        z-index: 9999;
        display: block;
        min-width: 280px;
        border: 3px solid #ff6b35;
    }

.reconnect-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.reconnect-spinner {
    display: flex;
    gap: 4px;
    align-items: center;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ff6b35;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 6px rgba(255, 107, 53, 0.8);
}

.circle-1 {
    animation-delay: 0s;
}

.circle-2 {
    animation-delay: 0.3s;
}

.circle-3 {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 80%, 100% {
        opacity: 0.6;
        transform: scale(1);
        box-shadow: 0 0 6px rgba(255, 107, 53, 0.5);
    }

    40% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 12px rgba(255, 107, 53, 1);
    }
}

.reconnect-text {
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
}