html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.ckeditor-content {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

    .ckeditor-content blockquote {
        border-left: 4px solid #ccc;
        padding-left: 1em;
        margin: 1.5em 0;
        color: #555;
        font-style: italic;
        background-color: #f9f9f9;
    }

    /* Başlıklar */
    .ckeditor-content h1,
    .ckeditor-content h2,
    .ckeditor-content h3,
    .ckeditor-content h4,
    .ckeditor-content h5,
    .ckeditor-content h6 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2em;
        font-weight: 700;
        color: #111;
        margin: 1.2em 0 1em 0;
        line-height: 1.3;
    }

    /* Paragraflar */
    .ckeditor-content p {
        margin-bottom: 1em;
        color: #333;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Liste Elemanları */
    .ckeditor-content ul,
    .ckeditor-content ol {
        padding-left: 1.5em;
        margin-bottom: 1em;
        font-weight: 300;
    }

    .ckeditor-content li {
        margin-bottom: 0.5em;
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
    }

    /* Bağlantılar */
    .ckeditor-content a {
        color: #007bff;
        text-decoration: underline;
    }

        .ckeditor-content a:hover {
            color: #0056b3;
        }