/* General page layout improvements */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Main content area */
.container, .content {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Title styling */
h1, h2, h3 {
    color: #2e6b4f;
    font-weight: 600;
}

h1.article-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* Author name */
.author {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

/* Published info */
.published {
    color: #888;
    margin-bottom: 30px;
}

/* Abstract styling */
.abstract {
    text-align: justify;
    text-justify: inter-word;
    background-color: #f2f7f2;
    padding: 15px 20px;
    border-left: 5px solid #4caf50;
    margin-bottom: 30px;
    border-radius: 5px;
}

/* Sidebar links */
.sidebar a {
    display: block;
    color: #2e6b4f;
    font-weight: 500;
    padding: 5px 0;
    text-decoration: none;
}

.sidebar a:hover {
    text-decoration: underline;
    color: #1a452e;
}

/* Citation box */
.citation-box {
    background: #f3f6f6;
    border-left: 4px solid #48bff7;
    padding: 10px 15px;
    margin-top: 20px;
    font-size: 0.95em;
    font-style: italic;
    color: #444;
}

/* Tools area */
.tools img {
    margin: 10px 5px;
    height: 40px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tools img:hover {
    opacity: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .container, .content {
        padding: 15px;
    }

    h1.article-title {
        font-size: 22px;
    }
}
/* Journal Summary Styling for OJS Homepage */
.pkp_page_about .pkp_structure_main > div > p,
.pkp_page_about .pkp_structure_main > div > div {
    text-align: justify;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Optional: Stylize headers in the About Journal section */
.pkp_page_about .pkp_structure_main h2,
.pkp_page_about .pkp_structure_main h3 {
    font-family: 'Arial', sans-serif;
    color: #1e5e2c;
    margin-top: 25px;
    margin-bottom: 15px;
}
