/* Compact footer layout */
.pkp_structure_footer_wrapper {
    padding: 12px 0 !important;
}

/* Footer layout alignment */
.pkp_structure_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    text-align: center;
}

/* Add publisher text */
.pkp_structure_footer::before {
    content: "© 2026 Nova Inventis Press. All rights reserved.";
    font-weight: 500;
}

/* PKP logo sizing */
.pkp_brand_footer img {
    height: 36px !important;   /* balanced size */
    opacity: 0.9;
}

.modern-authors .author-name {
    position: relative;
    display: inline-block;
    margin-right: 6px;
}

.modern-authors .author-label {
    cursor: pointer;
}

.modern-authors .author-affiliation {
    display: none;
    position: absolute;
    left: 0;
    top: 26px;
    background: #fff;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 280px;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    z-index: 999;
}

/* When checkbox is checked → show affiliation */
.modern-authors .author-toggle:checked + .author-label + .author-affiliation {
    display: block;
}