﻿#reconnect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: conic-gradient(#09f, #df0, #f09, #09f);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0);
    mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 0);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.reconnect-message {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
}
