/* =============================
   CKEditor Frontend Content Style
   ============================= */
.ckeditor-content {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  word-wrap: break-word;
}

.ckeditor-content h1,
.ckeditor-content h2,
.ckeditor-content h3,
.ckeditor-content h4,
.ckeditor-content h5 {
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.ckeditor-content p {
  margin-bottom: 12px;
}

/* ✅ Fix missing bullet/number list in CKEditor content */
.ckeditor-content ul {
  list-style-type: disc !important;
  padding-left: 25px !important;
  margin-left: 15px;
}

.ckeditor-content ol {
  list-style-type: decimal !important;
  padding-left: 25px !important;
  margin-left: 15px;
}

.ckeditor-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}


.ckeditor-content strong {
  font-weight: 600;
}

.ckeditor-content a {
  color: #007bff;
  text-decoration: underline;
}

.ckeditor-content a:hover {
  text-decoration: none;
}

.ckeditor-content table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

.ckeditor-content th,
.ckeditor-content td {
  border: 1px solid #ddd;
  padding: 8px;
}

.ckeditor-content th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.ckeditor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 10px 0;
}

.ckeditor-content blockquote {
  border-left: 4px solid #007bff;
  padding-left: 15px;
  color: #555;
  font-style: italic;
  margin: 20px 0;
}
