/* =========================
REMOVE DEFAULT HEADER LIMITS
========================= */

.pkp_structure_head {
    width: 100% !important;
    padding: 0 !important;
}

.pkp_head_wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* =========================
FORCE FULL WIDTH IMAGE
========================= */

.custom-header-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.custom-header-banner img {
    width: 100% !important;
    height: auto;
    display: block;
}

/* =========================
REMOVE DEFAULT LOGO & TITLE
========================= */

.pkp_site_name {
    display: none !important;
}
/* =====================================================
MOVE MENU BELOW BANNER
===================================================== */

.pkp_navigation_primary > li {
    display: inline-block !important;
    float: none !important;
}

.pkp_navigation_primary > li > a {
    padding: 0;
}

.pkp_navigation_primary > li > a:hover {
    color: #003366;
    text-decoration: underline;
}
/* =====================================================
PDF VIEWER FIX
===================================================== */
/* Reset article & galley container */
.pkp_page_article .main_entry,
.pkp_page_article .obj_article_details,
.pkp_page_article .entry_details,
.pkp_page_article .galley_viewer {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
    position: relative !important;
}

/* Toolbar above PDF */
.pkp_page_article .entry_details {
    display: block !important;
    position: relative !important;
    z-index: 5 !important;
    background: #fff;
    margin-bottom: 0 !important;
    padding: 10px 0 !important;
}

/* PDF iframe */
.pkp_page_article iframe {
    display: block !important;
    width: 100% !important;
    height: calc(100vh - 60px) !important; /* 60px accounts for toolbar height */
    margin: 0 !important;
    position: relative !important;
    border: none !important;
}

/* Remove floats / absolute interference */
.pkp_page_article * {
    float: none !important;
    position: static !important;
}

/* Safety for article container */
.pkp_page_article .pkp_structure_main {
    position: relative !important;
    z-index: 1;
}

/* Optional: make toolbar text bold for clarity */
.pkp_page_article .entry_details .label {
    font-weight: bold;
    font-size: 16px;
}
/* =====================================================
HIDE HOMEPAGE HEADER IMAGE IN PDF VIEWER
===================================================== */
.pkp_page_article .custom-header-banner {
    display: none !important;
}