.preformatted-text > p {
    /* Preformatted texts might be wrapped in a <p> tag, */
    /* so we need to reset the margin to avoid extra spaces */
    margin: 0;
}

.preformatted-text.single-line > p {
    /* Single line might be applied just to the direct <p> child of a preformatted text */
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Globally disable the "No options" item of the Autocomplete component */
.MuiAutocomplete-noOptions {
    display: none;
}
