/* --- General Journal Style (Njhsciences.com Theme) --- */

/* Main body font */
body {
    font-family: "Open Sans", sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
    color: #0056b3; /* The primary blue color from the site */
}

/* --- Header --- */
header {
    background-color: #f8f9fa; /* Light gray header background */
    border-bottom: 1px solid #dee2e6;
}

/* Main navigation bar */
.pkp_navigation_primary {
    background-color: #0056b3; /* Blue navigation bar */
}

.pkp_navigation_primary .pkp_nav_item > a {
    color: #ffffff;
    font-weight: bold;
}

/* --- Content Area --- */
.pkp_structure_main {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Homepage content styling */
.homepage-content h2 {
    color: #0056b3;
    font-size: 24px;
    margin-bottom: 15px;
}

.homepage-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Block styling (e.g., Sidebar blocks) */
.pkp_block_content {
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.pkp_block_title {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    color: #0056b3;
    font-weight: bold;
}

/* --- Links and Buttons --- */
a {
    color: #0056b3;
}

a:hover {
    color: #004494;
    text-decoration: underline;
}

/* Primary Action Button (e.g., "Make a Submission") */
.pkp_button_primary {
    background-color: #dc3545; /* The red accent color */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

.pkp_button_primary:hover {
    background-color: #c82333;
}

/* --- Footer --- */
footer {
    background-color: #343a40; /* Dark footer background */
    color: #ffffff;
    padding: 40px 0;
}

footer a {
    color: #ffffff;
}

footer h4 {
    color: #ffffff;
}

/* --- Specific OJS Elements --- */

/* Submission progress bar */
.pkp_submission_progress .step_current {
    background-color: #0056b3;
}

.pkp_submission_progress .step_completed {
    background-color: #28a745; /* Green for completed steps */
}

/* Tables */
.pkp_table th {
    background-color: #f8f9fa;
    font-weight: bold;
}