/* General CKEditor content styles */
.ck-content {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #0E3440;
}

/* Headings */
.ck-content h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #0E3440;
}

.ck-content h2 {
    font-size: 1.75em;
    margin-bottom: 0.75em;
    font-weight: bold;
    color: #0E3440;
}

.ck-content h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    font-weight: bold;
    color: #0E3440;
}

.ck-content h4 {
    font-size: 1.25em;
    margin-bottom: 1.25em;
    font-weight: bold;
    color: #0E3440;
}

.ck-content h5 {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    font-weight: bold;
    color: #0E3440;
}

.ck-content h6 {
    font-size: 1em;
    margin-bottom: 1.75em;
    font-weight: bold;
    color: #0E3440;
}

/* Paragraph */
.ck-content p {
    margin-bottom: 1em;
    line-height: 1.6;
    color: black;
}

/* Blockquote */
.ck-content blockquote {
    padding: 1em;
    margin: 0 0 1.5em;
    border-left: 5px solid #ccc;
    background-color: #f9f9f9;
    font-style: italic;
}

/* Tables */
.ck-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    overflow-x: auto;
    display: block;
}

.ck-content table th,
.ck-content table td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.ck-content table th {
    background-color: #f3f3f3;
    font-weight: bold;
}

/* Lists */
.ck-content ul {
    list-style-type: disc;
}

.ck-content ol {
    list-style-type: decimal;
}

.ck-content ul,
.ck-content ol {
    margin-bottom: 1.25em;
    padding-left: 20px;
}

.ck-content ul li,
.ck-content ol li {
    margin-bottom: 0.5em;
}

/* Links */
.ck-content a {
    color: #0A327F;
    text-decoration: underline;
}

/* Images */
.ck-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.25em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ck-content {
        font-size: 0.9em;
        padding: 0.5em;
    }

    .ck-content h1 {
        font-size: 1.75em;
    }

    .ck-content h2 {
        font-size: 1.5em;
    }

    .ck-content h3 {
        font-size: 1.25em;
    }

    .ck-content h4 {
        font-size: 1.1em;
    }

    .ck-content h5 {
        font-size: 1em;
    }

    .ck-content h6 {
        font-size: 0.9em;
    }

    .ck-content blockquote {
        font-size: 0.9em;
    }

    .ck-content table th,
    .ck-content table td {
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .ck-content {
        font-size: 0.8em;
    }

    .ck-content ul,
    .ck-content ol {
        padding-left: 15px;
    }
}
