/* CKEditor 5 editör içeriği için siyah yazı rengi */
.ck-editor__main .ck-content,
.ck-editor__main .ck-content * {
  color: #000 !important;
  background-color: #fff !important;
}

/* CKEditor 5'in kendi renk değişkenini de zorla (bazı temalarda lazım oluyor) */
:root {
  --ck-color-text: #000 !important;
}

/* Liste stillerinin front-end'de gorunmesi icin varsayilan ayarlar */
.ck-content ul,
.ck-content ol,
.details-content ul,
.details-content ol,
.post-content ul,
.post-content ol,
.blog-post-details ul,
.blog-post-details ol {
  list-style-position: outside;
  margin-left: 1.25rem;
  padding-left: 0.75rem;
}

/* CKEditor list style class destekleri */
.ck-content ul[class*="list-style-type"],
.ck-content ol[class*="list-style-type"],
.details-content ul[class*="list-style-type"],
.details-content ol[class*="list-style-type"] {
  list-style-type: inherit;
}

/* Liste stillerini koru: temadan gelen list-style:none resetlerini ez */
.ck-content ul,
.ck-content ol,
.details-content ul,
.details-content ol,
.post-content ul,
.post-content ol,
.blog-post-details ul,
.blog-post-details ol {
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-left: 0;
}

.ck-content ul,
.details-content ul,
.post-content ul,
.blog-post-details ul {
  list-style-type: disc;
}

.ck-content ol,
.details-content ol,
.post-content ol,
.blog-post-details ol {
  list-style-type: decimal;
}
