/* CKEditor 5 Frontend Styles */
/* Font Sizes */
.text-tiny {
    font-size: 0.7em;
    line-height: 1.2;
}

.text-small {
    font-size: 0.85em;
    line-height: 1.3;
}

.text-big {
    font-size: 1.4em;
    line-height: 1.4;
    margin: 0.5em 0;
}

.text-huge {
    font-size: 1.8em;
    line-height: 1.5;
    margin: 0.75em 0;
    font-weight: 600;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* Images */
.image-style-align-left {
    float: left;
    margin-right: 1.5em;
    max-width: 50%;
}

.image-style-align-right {
    float: right;
    margin-left: 1.5em;
    max-width: 50%;
}

.image-style-align-center {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.image-style-side {
    float: right;
    margin-left: 1.5em;
    max-width: 40%;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #ccc;
    margin: 1.5em 0;
    padding-left: 1em;
    font-style: italic;
    color: #555;
}

/* Code */
.code-block {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 1em;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

/* Highlight */
mark {
    background-color: #ffeb3b;
    padding: 0.1em 0.3em;
    border-radius: 2px;
}