/* Justify text content in OJS without changing original direction */
body p,
body div,
body td,
body li {
    text-align: justify;       /* Justify text for readability */
    unicode-bidi: embed;       /* Ensure proper handling of mixed-direction text */
}

/* Optional: justify headings except H1 */
body h2, body h3, body h4, body h5, body h6 {
    text-align: justify;
}

/* Exclude H1 and footer from justification */
body h1,
footer {
    text-align: initial; /* Keep default alignment */
}
