.app-session-dialog-open {
    overflow: hidden;
}

.app-session-dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(4, 8, 14, .72);
    backdrop-filter: blur(3px);
}

.app-session-dialog-backdrop.is-open {
    display: flex;
}

.app-session-dialog {
    width: min(420px, 100%);
    overflow: hidden;
    color: var(--bs-body-color, #e8edf5);
    background: var(--bs-body-bg, #17202c);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .7rem;
    box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, .45);
}

.app-session-dialog__header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.app-session-dialog__header h2 {
    margin: 0;
    font-size: 1.1rem;
}

.app-session-dialog__content {
    padding: 1.25rem;
    font-size: .95rem;
    line-height: 1.5;
}

.app-session-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .65rem;
    margin-top: 1.25rem;
}
