.dialog .message {
    width: auto;
    max-width: 50vw;
    padding: 0;
    margin: 0 0 2em 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dialog .message:empty {
    display: none;
}
.dialog .fields {
    display: block;
    margin-bottom: 2em;
}
.dialog .fields .field {
    display: block;
}
.dialog .fields .field > .name {
    display: block;
}
.dialog .fields .field > input[type="text"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.dialog .commands {
    display: flex;
    width: auto;
    min-width: 20em;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}
.dialog .commands .command {
    display: flex;
    height: 3em;
    padding: 0 1.5em;
    justify-content: center;
    align-items: center;
    margin: 0 0.8em;
    box-sizing: border-box;
    border-radius: 1.2em;
    border-color: rgba(128, 128, 128, 0.7);
    cursor: pointer;
    background-color: rgb(230, 230, 230);
}
.dialog .commands .command:hover {
    border-color: orange;
    background-color: rgb(233, 232, 224);
}
.dialog button {
    font-size: 1rem;
}
.dialog button > .icon {
    font-size: 100%;
    opacity: 0.7;
    margin-right: 0.2em;
}
