/* CSS to justify abstract text in OJS journal */
.article-abstract,
.obj_article_details .abstract {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

/* Additional styling to ensure compatibility with various OJS themes */
.abstract p,
.abstract-content p,
.article-abstract p {
  text-align: justify;
}

/* For OJS 3.x specific styling */
.obj_article_details .abstract .abstract_content {
  text-align: justify;
}

.pkp_structure_main p {
	text-align: justify;
}

/* Improved OJS logo styling */
.pkp_site_name .is_img img {
  display: inline-block;
  max-height: 100px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: all 0.3s ease;
}

/* For smaller screens */
@media screen and (max-width: 768px) {
  .pkp_site_name .is_img img {
    max-height: 70px;
  }
}

/* Hover effect for better interaction */
.pkp_site_name .is_img a:hover img {
  opacity: 0.9;
}

/* Fix for specific OJS 3.x themes */
.pkp_head_wrapper .pkp_site_name .is_img img {
  margin: 0 auto;
}

/* Ensure logo maintains quality */
.pkp_site_name .is_img img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.PKP_structure_page {
margin-top: 0px;
margin-bottom: 0px;
}

.pkp_site_name_wrapper, .PKP_navigation_primary_row{
padding-left: 10px;
padding-right: 10px;

}

.PKP_site_name{
padding-top: 5px;
padding-bottom: 2px;
}

}