




/* Style for the logo with title container */
.pkp_site_name a.is_img_with_title {
    display: flex !important;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.pkp_site_name a.is_img_with_title img {
    max-height: 70px;
    width: auto;
    display: block;
}

.pkp_site_name a.is_img_with_title .site_title {
    font-size: clamp(18px, 4vw, 30px) !important;
    font-weight: bold !important;
    color: #333 !important;
    line-height: 1.2;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
}

/* Hide the original class if needed */
.pkp_site_name a.is_img {
    display: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .pkp_site_name a.is_img_with_title {
        flex-wrap: wrap;
    }
    
    .pkp_site_name a.is_img_with_title img {
        max-height: 45px;
    }
    
    .pkp_site_name a.is_img_with_title .site_title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pkp_site_name a.is_img_with_title .site_title {
        font-size: 18px;
    }
    
    .pkp_site_name a.is_img_with_title img {
        max-height: 35px;
    }
}

@media (max-width: 360px) {
    .pkp_site_name a.is_img_with_title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pkp_site_name a.is_img_with_title .site_title {
        margin-top: 5px;
    }
}
/* Hide the OJS/PKP branding footer completely */
.pkp_brand_footer,
.pkp_structure_footer .pkp_brand_footer,
div.pkp_brand_footer,
footer .pkp_brand_footer,
.pkp_structure_footer_wrapper .pkp_brand_footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* Container for all footer content */
.footer img {
    height: 50px;           /* Set all images to same height */
    width: auto;            /* Let width adjust proportionally */
    margin: 0 15px;         /* Spacing between items */
    vertical-align: middle; /* Align with text if any */
}

/* If the ORCID and DOI images are different heights */
.footer img[src*="orcid"],
.footer img[src*="doi"] {
    height: 40px;           /* Adjust individual images if needed */
    width: auto;
}

/* Style for the text block if it's an image */
.footer img[src*="connecting"] {
    height: 45px;           /* Adjust text block image */
    width: auto;
}

/* Alternative: If you want to target by position (1st, 2nd, 3rd image) */
.footer img:nth-child(1) {  /* ORCID */
    height: 45px;
}

.footer img:nth-child(2) {  /* DOI */
    height: 40px;
}

.footer img:nth-child(3) {  /* Connecting Research */
    height: 50px;
}

/* Add flexbox for perfect alignment in a row */
.footer .content,
.footer .footer-content {
    display: flex;
    align-items: center;    /* Vertically center all items */
    justify-content: center; /* Center horizontally */
    flex-wrap: wrap;        /* Allow wrapping on mobile */
    gap: 20px;              /* Space between items */
    padding: 15px 0;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}




