@charset "UTF-8";

/* Fix sticky out menu */
.pkp_navigation_primary>li:first-child a {
    margin-left: 0;
}

/* Fix sticky out logged in box */
.pkp_navigation_user.pkp_navigation_user {
    left: -10px;
}

/* Header Image Size */
.pkp_site_name .is_img img {
    max-height: 200px;
}

/* Responsive adjustments */
@media only screen and (max-width: 1200px) {
    .pkp_site_name .is_img img {
        max-height: 80px;
        /* Slightly smaller on smaller desktops */
    }
}

@media only screen and (max-width: 992px) {
    .pkp_site_name .is_img img {
        max-height: 25px;
        /* Adjust for tablets and smaller desktops */
    }
}

@media only screen and (max-width: 480px) {
    .pkp_site_name .is_img img {
        max-height: 10px;
        /* Smaller height for very small devices */
    }
}



/* Header Banner Colour */
.pkp_site_name {
    background: #FFFFFF;
    /* White for header */
    color: #000000;
    /* black text */
}

/* Wider Banner Colour */
.pkp_structure_head {
    background-color: #ffffff;
    /* white background for sections */
}

/* Primary Navigation Menu Bar Colour */
.pkp_navigation_primary_wrapper {
    background: #7eb17c;
    /* green for navigation bar */
}

/* Primary Navigation Menu Bar Text And Background Colour */
.pkp_nav_list a {
    background-color: #7eb17c !important;
    /* green background */
    color: #000000 !important;
    /* black text for navigation links */
}

/* Search Button Text and Background Colour */
.pkp_navigation_search_wrapper a {
    background-color: #7eb17c !important;
    /* green background */
    color: #000000 !important;
    /* black text */
}

/* Make A Submission Sidebar Block Button Text and Background Colour */
.block_make_submission_link {
    background-color: #b0d4ea !important;
    /* blue background */
    color: #000000 !important;
    /* black text */
}

/* Galley Button Text and Background Colour */
.obj_galley_link {
    border: 2px solid #FFFFFF;
    /* White outline */
    background: #b0d4ea;
    /* blue background for buttons */
    color: #000000 !important;
    /* black text */
    border-radius: 6px;
    /* Rounded corners for buttons */
    padding: 2px 8px;
    /* Padding for better button shape */
    display: inline-block;
    /* Inline-block for spacing */
    text-align: center;
    /* Center the text inside the button */
    text-decoration: none;
    /* Remove underline from link buttons */
}

/* Galley Button Hover Text and Background Colour */
.obj_galley_link:hover, .obj_galley_link:focus {
    color: #000000 !important;
    /* black text */
    background: #7eb17c !important;
    /* green background */
    border-color: #7eb17c;
    /* green border on hover */
}

/* Footer Background and Text Colour */
.pkp_footer_content {
    background: #7eb17c;
    /* green for footer */
    color: #000000;
    /* black text */
}

/* Wider Footer Background Colour */
.pkp_structure_footer_wrapper {
    background: #ffffff;
    /* white background */
}

/* Hyperlink Text Colour with  Underline */
a {
    color: #656565;
    /* grey text */
    text-decoration: underline;
    /* Underlined links */
    text-decoration-color: #656565;
    /* grey underline */
}

/* Hyperlink Hover Effect */
a:hover {
    color: #656565;
    /* grey text on hover */
    text-decoration-color: #000000;
    /* black on hover */
}

/* Footer Links for Better Legibility */
.pkp_footer_content a {
    color: #000000;
    /* black text for links in the footer */
    text-decoration: underline;
    /* Underline for distinction */
    text-decoration-color: #000000;
    /* black underline */
}

.pkp_footer_content a:hover {
    color: #000000;
    /* black text on hover for footer links */
    text-decoration-color: #000000;
    /* black underline on hover */
}