/* Enable image resize handles in RTE */
.coral-RichText-editable {
  position: relative;
}
.coral-RichText-editable img {
  position: relative;
  max-width: 100%;
  height: auto;
}
.flex-cell {
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  max-height: inherit;
  box-sizing: border-box;
}
/* Ensure images display properly in the table */
.flex-cell img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
/* Image alignment classes */
.flex-cell img.alignleft {
  float: left;
  margin-right: 15px;
}
.flex-cell img.alignright {
  float: right;
  margin-left: 15px;
}
.flex-cell img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
