



/* === Journal Name Styling === */

.pkp_site_name {
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

.pkp_site_name .pkp_site_title {
    font-size: clamp(20px, 10vw, 40px); /* Auto-scaling font size */
    font-weight: bold;
    color: #002247;
    margin: 0;
}


.pkp_navigation_primary .is_current > a {
    background-color: #002247;
    color: #ffffff !important;
    border-radius: 4px;
}

.pkp_navigation_primary a:hover {
    background-color: #002247;
    color: #ffffff !important;
    border-radius: 4px;
}
.pkp_navigation_primary {
    border-bottom: 3px solid #002247;
}



/* Style the chart container */
#downloadsGraph {
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
}

/* Optional: Make text more readable */
#downloadsGraph .chart-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Legend styling if present */
.chart-legend {
    font-size: 0.9em;
    color: #666;
}





/* General button style */
.navbar-nav .nav-link {
    background-color: #002247; /* Primary color */
    color: white; /* Text color */
    padding: 10px 20px; /* Button padding */
    border-radius: 5px; /* Rounded corners */
    text-transform: uppercase; /* Capitalize text */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    background-color: #004080; /* Lighter shade for hover */
    transform: scale(1.05); /* Slight zoom effect */
}

/* Active button (when a page is selected) */
.navbar-nav .nav-link.active {
    background-color: #003366; /* Darker shade for active page */
    color: #ffcc00; /* Gold color for active button text */
}

/* Focus effect for accessibility */
.navbar-nav .nav-link:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Custom focus shadow */
}























/* === Button and Link Styling === */
.cmp_button, .cmp_form .buttons button, .page_lost_password .buttons button, .page_search .submit button, .block_make_submission a {
    background: #002247; /* Updated button background */
    color: #ffffff;
}

/* === Headings (h1, h2, h3, h4) Updated to blue === */
h1, h2, h3, h4 {
    color: #002247;
}


/* === Links Hover Color === */
a:hover {
    color: #002247; /* Dark blue on hover */
}









/* Main footer wrapper with background image */
.footer-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Full-width responsive background image */
.footer-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive embedded Google Map */
.map-container {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 16 / 9; /* Keeps it proportional */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
}

/* Map iframe fully fills the container */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}












/* Container for the submission block */
.block_make_submission {
    text-align: center; /* Center-aligns inline-block elements */
    margin: 30px 0;     /* Adds vertical spacing */
}

/* Make the "Make a Submission" button larger and styled */
.block_make_submission a {
    display: inline-block;
    font-size: 1.5em;
    font-weight: bold;
    padding: 0.75em 1.5em;
    background-color: #002247;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    animation: blink 1.5s linear infinite;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    text-align: center;
}

/* Hover effect - changes color */
.block_make_submission a:hover {
    background-color: #00306A;
    color: #ffffff;
}

/* Blinking animation keyframes */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}





.issn-highlight {
  font-size: 1.5rem; /* double the normal size */
  font-weight: bold;
  text-align: center;
  margin: 15px 0;
  animation: colorShift 5s infinite;
  transition: transform 0.3s ease-in-out;
}

/* Optional hover effect for some interactivity */
.issn-highlight:hover {
  transform: scale(1.1);
}

/* Color changing animation */
@keyframes colorShift {
  0%   { color: #ff3c3c; }
  20%  { color: #ff7b00; }
  40%  { color: #f1c40f; }
  60%  { color: #2ecc71; }
  80%  { color: #3498db; }
  100% { color: #9b59b6; }
}




/* Sidebar container */
.pkp_sidebar {
    padding: 2px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

/* Sidebar titles */
.pkp_block .title {
    background: linear-gradient(135deg, #002247, #003975);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 1em;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* List items inside sidebar blocks */
.pkp_block .content ul {
    list-style: none;
    padding-left: 0;
}

.pkp_block .content ul li {
    padding: 4px 5px;
    margin-bottom: 4px;
    border-left: 4px solid #002247;
    background: #ffffff;
    border-radius: 4px;
    transition: background 0.3s;
}

.pkp_block .content ul li:hover {
    background: #B8DAFF;
}

/* Links inside the sidebar */
.pkp_block .content ul li a {
    text-decoration: none;
    color: #002247;
    font-weight: 500;
    display: block;
}

.pkp_block .content ul li a:hover {
    color: #00306A;
    text-decoration: underline;
}

/* "Most Read" article view count */
.pkp_block .content ul li::after {
    content: attr(data-views);
    float: right;
    font-size: 0.85em;
    color: #888;
}

/* Follow us section icons (assuming you use icons or placeholders) */
.pkp_block.follow_us ul li a::before {
    content: "🔗 ";
}

/* Keyword tags */
.pkp_block.keywords .content {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pkp_block.keywords .content span {
    background: #002247;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pkp_block.keywords .content span:hover {
    background: #00306A;
}

/* Optional: Add spacing between blocks */
.pkp_block {
    margin-bottom: 0px;
}









/* Style for reference links to wrap text and align properly */
.obj_article_details .references,
.citation_list, /* Adjust selector depending on OJS version */
.references {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: justify;
    line-height: 1.6em;
    font-size: 1em;
}

/* Ensure anchor tags (links) also wrap correctly inside references */
.obj_article_details .references a,
.citation_list a,
.references a {
    word-break: break-all;
    white-space: normal;
    text-decoration: underline;
    color: #00306A; /* optional: improves link readability */
}













/* Main article listing container */
.article-listing {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Each article entry */
.article-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 5px solid #002247;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 6px;
}

/* Hover effect */
.article-item:hover {
    background-color: #f0f9f0;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Article title */
.article-item h4 {
    margin: 0 0 8px;
    font-size: 1.25em;
    color: #002247;
}

/* DOI */
.article-item .doi {
    font-size: 1em;
    color: #888;
    margin-bottom: 5px;
    display: block;
}

/* Author list */
.article-item .authors {
    font-size: 1em;
    margin-bottom: 10px;
}

/* Page range & links */
.article-item .meta {
    font-size: 0.9em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* PDF/HTML buttons */
.article-item .meta a {
    text-decoration: none;
    color: #FFFFFF;
    background: #002247;
    padding: 5px 10px;
    border-radius: 4px;
    margin-left: 10px;
    transition: background 0.3s ease;
}#002247

.article-item .meta a:hover {
    background: #00306A;
}


























/* ================================
   Editorial Masthead – Modern UI
   ================================ */

.page_masthead {
    max-width: 980px;
    margin: auto;
    padding: 1.5rem 1rem;
    animation: fadeIn 0.6s ease-in-out;
}

/* Section headings (roles) */
.page_masthead h2 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
}

/* User list */
.page_masthead .user_listing {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* Individual member card */
.page_masthead .user_listing li {
    background: #ffffff;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover animation */
.page_masthead .user_listing li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

/* Accent line animation */
.page_masthead .user_listing li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
    transform: scaleY(0);
    transition: transform 0.35s ease;
    transform-origin: top;
}

.page_masthead .user_listing li:hover::before {
    transform: scaleY(1);
}

/* Name */
.page_masthead .name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

/* Date */
.page_masthead .date_start {
    font-size: 0.85rem;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

/* Affiliation */
.page_masthead .affiliation {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    color: #374151;
}

/* Email + homepage */
.page_masthead .email,
.page_masthead .homepage {
    display: block;
    font-size: 0.9rem;
    margin-top: 4px;
    color: #1f2937;
}

.page_masthead .email a,
.page_masthead .homepage a {
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}

.page_masthead .email a:hover,
.page_masthead .homepage a:hover {
    text-decoration: underline;
}

/* ORCID icon */
.page_masthead .orcid a {
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.page_masthead .orcid a:hover {
    transform: scale(1.1);
}

/* Peer reviewers section */
.page_masthead hr {
    margin: 3rem 0 2rem;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d1d5db, transparent);
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .page_masthead .user_listing li {
        padding: 0.9rem;
    }

    .page_masthead h2 {
        font-size: 1.2rem;
    }
}
























/* style.css - Table Styles for Manuscript Guidelines */


/* Container to center and style the table */
.table-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table base styling */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

/* Header styling */
th {
  background-color: #002247;
  color: white;
  font-weight: 600;
  padding: 14px 16px;
  text-align: center;
  border: 1px solid #ddd;
}

/* Body cell styling */
td {
  padding: 14px 16px;
  text-align: center;
  border: 1px solid #ddd;
}

/* Alternate row coloring */
tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Hover effect */
tr:hover {
  background-color: #e6f7ff;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  th, td {
    padding: 10px;
  }
}



/* Justify text in the abstract section */
.abstract, .article-abstract, .obj_article_details .abstract {
    text-align: justify;
    line-height: 1.6;
    font-size: 1em;
    color: #333;
}





/* Justify all paragraph text */
p {
    text-align: justify;
}

/* Justify article content in OJS */
.obj_article_details, 
.obj_article_summary, 
.pkp_page_about, 
.pkp_site_name, 
.pkp_structure_main,
.pkp_navigation_primary_wrapper,
.pkp_structure_content, 
.pkp_page_index .description, 
.pkp_page_index .additional_content {
    text-align: justify;
}

/* Justify text inside sections like About, Editorial Team, etc. */
.pkp_page_about p,
.pkp_page_contact p,
.pkp_page_editorialTeam p,
.pkp_page_issue p,
.pkp_page_submissions p {
    text-align: justify;
}

/* Optional: Justify text in article abstracts */
.article-details-abstract p {
    text-align: justify;
}


