.modal-disconnect-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

    .modal-disconnect-overlay.active {
        display: flex;
    }

.modal-disconnect {
    text-align: center;
    max-width: 721px;
    width: 100%;
    padding: 56px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: modal-disconnect-fadein 0.4s ease;
}

@keyframes modal-disconnect-fadein {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-disconnect__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

    .modal-disconnect__logo svg,
    .modal-disconnect__logo img {
        width: 256px;
        height: auto;
    }

.modal-disconnect__title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(31, 31, 31, 1);
    line-height: 1.5;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.modal-disconnect__message {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(99, 100, 101, 1);
    line-height: 1.5;
    margin-bottom: 32px;
}

    .modal-disconnect__message strong {
        font-weight: 700;
    }

.modal-disconnect__btn {
    display: inline-block;
    width: 100%;
    padding: 10px 18px;
    background: rgba(53, 93, 152, 1);
    color: #ffffff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .modal-disconnect__btn:hover {
        background: #2f5d8e;
    }

    .modal-disconnect__btn:active {
        transform: scale(0.99);
    }

.modal-disconnect__btn--outline {
    background: transparent;
    color: rgba(53, 93, 152, 1);
    border: 1px solid rgba(53, 93, 152, 1);
}

    .modal-disconnect__btn--outline:hover {
        background: rgba(53, 93, 152, 0.08);
    }

.modal-disconnect__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

    .modal-disconnect__buttons .modal-disconnect__btn {
        width: auto;
    }
