@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: #005072;
    /* Muted deep blue */
    color: #ffffff;
    /* White text for contrast */
}

/* Wider Banner Colour */
.pkp_structure_head {
    background-color: #005072;
    /* Muted deep blue */
}

/* Primary Navigation Menu Bar Colour */
.pkp_navigation_primary_wrapper {
    background: #005072;
    /* Muted deep blue */
}

/* Primary Navigation Menu Bar Text And Background Colour */
.pkp_nav_list a {
    background-color: #005072 !important;
    /* Muted deep blue */
    color: #ffffff !important;
    /* White text for contrast */
}

/* Search Button Text and Background Colour */
.pkp_navigation_search_wrapper a {
    background-color: #005072 !important;
    /* Muted deep blue */
    color: #ffffff !important;
    /* white text */
}

/* Make A Submission Sidebar Block Button Text and Background Colour */
.block_make_submission_link {
    background-color: #005072 !important;
    /* Muted deep blue */
    color: #ffffff !important;
    /* White text */
}

/* Galley Button Text and Background Colour */
.obj_galley_link {
    border: 2px solid #005072;
    /* Muted deep blue border */
    background: #000000;
    /* Black */
    color: #ffffff !important;
    /* White text */
    border-radius: 12px;
    /* Rounded corners for buttons */
    padding: 8px 16px;
    /* 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;
    /* Muted deep blue text */
    background: #feff3b !important;
    /* Muted deep blue background */
    border-color: #3073f9;
    /* Muted deep blue border on hover */
}

/* Footer Background and Text Colour */
.pkp_footer_content {
    background: #005072;
    /* Muted deep blue */
    color: #ffffff;
    /* White text */
}

/* Wider Footer Background Colour */
.pkp_structure_footer_wrapper {
    background: #005072;
    /* Muted deep blue */
}

/* Hyperlink Text Colour */
a {
    color: #005072;
    /* Muted deep blue */
    text-decoration: underline;
    /* Underlined links */
    text-decoration-color: #005072;
    /* Muted deep blue underline */
}

/* Hyperlink Hover Effect */
a:hover {
    background: #ffffff;
    /* White on hover */
    text-decoration-color: #ffffff;
    /* White underline on hover */
}

/* Footer Links */
.pkp_footer_content a {
    color: #ffffff;
    /* Muted deep blue text for links in the footer */
    text-decoration: underline;
    /* Underline for distinction */
    text-decoration-color: #ffffff;
    /* Muted deep blue underline */
}

/* Footer Links Hover Effect */
.pkp_footer_content a:hover {
    color: #ffffff;
    background: #005072;
    /* White for contrast */
    text-decoration-color: #ffffff;
    /* White underline on hover */
}