/***** Simple RTE styles *****/
.simple-rte-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid #ced4da;
  border-bottom: none;
  background: #f8f9fa;
  padding: 6px;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.simple-rte-toolbar button {
  border: 1px solid #ced4da;
  background: white;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}
.simple-rte-toolbar button.active {
  background: #e9ecef;
}
.simple-rte-editor {
  border: 1px solid #ced4da;
  min-height: 160px;
  padding: 10px;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  background: #fff;
}
.simple-rte-editor:focus {
  outline: none;
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}
.simple-rte-hidden-textarea {
  display: none !important;
}
.simple-rte-image-input {
  display: none;
}
.simple-rte-toolbar .separator {
  width: 1px;
  background: #dee2e6;
  margin: 0 4px;
}
/* Ensure images never overflow editor and keep aspect ratio */
.simple-rte-editor img {
  max-width: 100%;
  height: auto;
}
/* Visual highlight when an image is selected in the editor */
.simple-rte-editor img.simple-rte-selected {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
  border-radius: 2px;
}