@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: #003366; /* Deep blue for header */
}

/* Wider Banner Colour */
.pkp_structure_head {
    background-color: #003366; /* Light grey background for sections */
}

/* Primary Navigation Menu Bar Colour */
.pkp_navigation_primary_wrapper {
    background: #000000; /* Deep blue for navigation bar */
}

/* Primary Navigation Menu Bar Text And Background Colour */
.pkp_nav_list a {
    background-color: #000000 !important; /* Deep blue */
    color: #ffffff !important; /* White text for navigation links */
}

/* Search Button Text and Background Colour */
.pkp_navigation_search_wrapper a {
    background-color: #000000 !important; /* Deep blue for search button */
    color: #ffffff !important; /* White text */
}

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

/* Galley Button Text and Background Colour */
.obj_galley_link {
    border: 1px solid #0066cc; /* Bright blue outline */
    background: #ffffff; /* White background for buttons */
    color: #003366 !important; /* Deep blue 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: #ffffff !important; /* White text */
    background: #003366 !important; /* Deep blue background */
    border-color: #ffffff; /* White border on hover */
}

/* Footer Background and Text Colour */
.pkp_footer_content {
    background: #000000; /* Deep blue for footer */
    color: #ffffff; /* White text */
}

/* Wider Footer Background Colour */
.pkp_structure_footer_wrapper {
    background: #003366; /* Light grey background */
}

/* Hyperlink Text Colour with Blue Underline */
a {
    color: #333333; /* Black text */
    text-decoration: underline; /* Underlined links */
    text-decoration-color: #0066cc; /* Blue underline */
}

/* Hyperlink Hover Effect */
a:hover {
    color: #003366; /* Deep blue on hover */
    text-decoration-color: #003366; /* Deep blue underline on hover */
}

/* Footer Links for Better Legibility */
.pkp_footer_content a {
    color: #ffffff; /* White text for links in the footer */
    text-decoration: underline; /* Underline for distinction */
    text-decoration-color: #0066cc; /* Blue underline */
}

.pkp_footer_content a:hover {
    color: #0066cc; /* Bright blue on hover for footer links */
    text-decoration-color: #ffffff; /* White underline on hover */
}

