﻿/* ====== Start Reconnect Gracefully ====== */
#reconnect-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(240, 240, 240, 0.);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /*   padding-top: 20px; */
}

.modal-dialog {
    max-width: 300px;
    width: 100%;
    margin: 0;
}

.modal-content {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.modal-header, .modal-footer {
    border: none; /* Remove default Bootstrap borders */
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-section {
    margin-bottom: 10px;
}

.modal-image {
    width: 80px; /* Adjust size as needed */
    height: 80px;
}


.btn-close {
    background: none;
    border: none;
}

.modal-footer button {
    margin: 0 5px;
}
/* ====== End Reconnect Gracefully ----- */
