/* BACKDROP */
#components-reconnect-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    animation: fadeIn 0.25s ease;
}

/* MODAL CARD */
#components-reconnect-modal > div {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-radius: 20px;
    padding: 32px 40px;

    box-shadow:
            0 10px 30px rgba(0,0,0,0.1),
            0 1px 2px rgba(0,0,0,0.05);

    text-align: center;
    min-width: 300px;

    animation: scaleIn 0.25s ease;
}

/* TEXT */
#components-reconnect-modal h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

#components-reconnect-modal p {
    color: #666;
    font-size: 14px;
}

/* SPINNER */
#components-reconnect-modal .spinner-border {
    margin-top: 20px;
    width: 32px;
    height: 32px;
    border-width: 3px;
    border-color: #111 transparent #111 transparent;
}

/* OPTIONAL: RETRY BUTTON */
#components-reconnect-modal button {
    margin-top: 20px;
    padding: 10px 18px;
    border-radius: 12px;
    border: none;

    background: #111;
    color: white;
    font-weight: 500;

    cursor: pointer;
    transition: all 0.2s ease;
}

#components-reconnect-modal button:hover {
    background: #333;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.bg-card {
    margin-top: 15px;
}