#reconnection-status {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    text-align: center;
    z-index: 9999;
    display: none !important; /* Always hidden - no visual reconnection notifications */
    border-bottom: 1px solid #ffeaa7;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reconnection-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-weight: 500;
}

.reconnection-message .btn {
    white-space: nowrap;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.reconnection-message .btn:hover {
    background-color: #0056b3;
}