.ck-content {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    padding: 10px;
    border-radius: 4px;

    a {
        color: #007bff;
        text-decoration: none;
    }

    h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
        margin-top: 1.2em;
        margin-bottom: 0.6em;
        color: #222;
    }

    p {
        width: 100% !important;
        margin: 0 0 1em 0 !important;
        text-align: justify;
    }

    ul, ol {
        margin: 0 0 1em 2em;
        padding: 0;
    }

    li {
        margin-bottom: 0.5em;
        display: block !important;

        &::before {
            content: "➡️";
            color: #007bff;
            margin-right: 0.5em;
        }

        * {
            display: inline !important;
        }
    }

    blockquote {
        border-left: 4px solid #eee;
        margin: 1em 0;
        padding: 0.5em 1em;
        color: #666;
        background: #fafafa;
    }

    code, pre {
        font-family: 'Fira Mono', 'Consolas', monospace;
        background: #f4f4f4;
        border-radius: 3px;
        padding: 2px 4px;
        font-size: 0.95em;
    }

    pre {
        padding: 1em;
        overflow-x: auto;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1em 0;
        border-radius: 3px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 1em 0;
        background: #fafafa;
    }

    th, td {
        border: 1px solid #ddd;
        padding: 0.5em 1em;
        text-align: left;
    }

    th {
        background: #f0f0f0;
        font-weight: bold;
    }

    hr {
        border: none;
        border-top: 1px solid #eee;
        margin: 2em 0;
    }

    strong {
        font-weight: bold;
    }

    em {
        font-style: italic;
    }

    .ck-content a:hover {
        text-decoration: underline;
    }

    .ck-content ul ul,
    .ck-content ol ol,
    .ck-content ul ol,
    .ck-content ol ul {
        margin-bottom: 0;
    }
}