:host {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

:host > dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--u);
    color: white;
    cursor: default;
}

:host > dialog > i.icon {
    position: fixed;
    top: 0;
    right: 0;
    padding: var(--u);
    background-color: transparent;
    color: white;
    font-size: 3rem;
    z-index: 10;
}

:host > dialog > div {
    user-select: text;
    -webkit-user-select: text;
    font-size: 1.5rem;
    line-height: 1.5;
    white-space: pre-wrap;
    z-index: 9;
}