/* CKEditor 5 Custom Styles */

/* Ensure proper styling in forms */
.ck-editor {
  margin-bottom: 1rem;
}

.ck-editor__editable {
  border-radius: 0.25rem;
}

/* Match Bootstrap form styles */
.ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
  border-color: #ced4da;
}

.ck.ck-editor__main>.ck-editor__editable.ck-focused {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Better spacing for content */
.ck-content {
  line-height: 1.6;
}

.ck-content p {
  margin-bottom: 1em;
}

/* Image alignment in content */
.ck-content img {
  max-width: 100%;
  height: auto;
}
