.dialog .body {
    display: flex;
    flex-direction: row;
    padding: 15px;
    align-items: flex-start;
}

.dialog .body .icon-container {
    flex-shrink: 0;
    width: 32px;
    margin-right: 15px;
}

.dialog .body .content-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.dialog .body .text {
    margin-bottom: 5px;
}

.dialog .text p {
    margin: 0 0 10px 0;
}

.dialog .body .checkbox-row {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.dialog .body .checkbox-row label {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: inherit;
    font-weight: normal;
    margin: 0;
    cursor: default;
    text-transform: none;
}

.dialog .body .checkbox-row input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    color-scheme: light;
    accent-color: auto;
}

.dialog .body .buttons {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.dialog .body .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    margin: 0;
    padding: 4px 12px;
}

.dialog .body .button .inner {
    white-space: nowrap;
}
