.rich-text img.left {
    float: left;
    margin: 15px 15px 15px 0;
}

.rich-text img.right {
    float: right;
    margin: 15px 0 15px 15px;
}

.rich-text img.full-width {
    width: 100%;
    height: auto;
    margin: 15px 0 15px 0;
}

/* Django 4.0 renders CheckboxSelectMultiple options in a messy way.
To correct this we need to style outer div containers around each option
We give a custom id to the div widget container then use it to access these child div containers
 */
.field.model_multiple_choice_field.checkbox_select_multiple label {
    clear: left;
    white-space: nowrap;
}

.field.model_multiple_choice_field.checkbox_select_multiple p.help {
    clear: left;
    white-space: nowrap;
}
