﻿#components-reconnect-modal {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 100%;
    max-height: 100%;
    width: 100vw;
    height: 100vh;
}

    #components-reconnect-modal::backdrop {
        background: rgba(15, 23, 42, .72);
        backdrop-filter: blur(6px);
    }

.reconnect-box {
    width: 420px;
    max-width: 92%;
    background: #111827;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    color: white;
    margin: auto;
    margin-top: 18vh;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.reconnect-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,.15);
    border-top-color: #3b82f6;
    animation: reconnect-spin .9s linear infinite;
}

@keyframes reconnect-spin {

    to {
        transform: rotate(360deg);
    }
}

#reconnect-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

#reconnect-message {
    color: #cbd5e1;
    margin-bottom: 18px;
    line-height: 1.5;
}

.reconnect-attempts {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 22px;
}

#reload-page-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: white;
    padding: 14px;
    cursor: pointer;
    display: none;
}
