/* 
   ZIJNR Professional Modernization CSS
   Target: journals.zu.edu.jo/ZIJNR
   Journal: Zarqa International Journal of Nursing Research
   Theme: Medical / Professional / Trust
   Colors: Medical Teal + Navy Blue + Silver accents
*/

@charset "utf-8";

/* 1. FONTS & CORE TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;600;700&family=Inter:wght@300;400;600;700&display=swap');

:root {
    /* ZIJNR Brand Colors — Medical / Nursing Theme */
    --zijnr-teal: #0d7377;       /* Primary Medical Teal */
    --zijnr-navy: #14213d;       /* Deep Navy Blue */
    --zijnr-blue: #1a6ea8;       /* Secondary Medical Blue */
    --zijnr-silver: #8da9c4;     /* Silver/Steel Blue accent */
    --zijnr-light-teal: #d4f0f0; /* Light teal background tint */
    --zijnr-header-bg: #e8f4f8;  /* Soft blue-white header background */

    /* Neutral Palette */
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f0f7f9;
    --border-color: #cde8ef;
    --shadow-sm: 0 1px 2px 0 rgba(13, 115, 119, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(13, 115, 119, 0.15), 0 2px 4px -1px rgba(13, 115, 119, 0.08);
    --radius: 8px;
}

/* ============================================
   GLOBAL RESET & TYPOGRAPHY
   ============================================ */
* {
    font-family: "Inter", "Alexandria", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

body {
    color: var(--text-main);
    line-height: 1.7;
    background-color: #fff;
}

/* ============================================
   2. HEADER & BRANDING
   ============================================ */
.pkp_structure_head {
    background-color: var(--zijnr-header-bg);
    border-bottom: 4px solid var(--zijnr-teal);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

/* Main header wrapper */
.pkp_head_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Keep logo + title aligned in one row */
.pkp_site_name_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
}

/* Remove default spacing */
.pkp_site_name {
    margin: 0;
    padding: 0;
}

/* Make the logo/text container horizontal */
.pkp_site_name .is_img {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

/* Logo size */
.pkp_site_name img {
    max-height: 105px !important;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pkp_site_name img:hover {
    transform: scale(1.05);
}

/* Journal title & ISSN to the right of logo */
.pkp_site_name .is_img::after {
    content: "Zarqa International Journal of Nursing Research\A ISSN(PRINT) XXXX-XXXX | ISSN(ONLINE) XXXX-XXXX";
    display: block;
    white-space: pre-line;
    font-size: 16px;
    font-weight: 700;
    color: var(--zijnr-navy);
    line-height: 1.6;
    margin-top: 0;
}

/* RTL support */
body[dir="rtl"] .pkp_site_name .is_img {
    flex-direction: row;
}

/* Mobile: stack logo and text vertically */
@media (max-width: 768px) {
    .pkp_site_name .is_img {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pkp_site_name .is_img::after {
        margin-top: 10px;
        font-size: 14px;
    }

    .pkp_site_name img {
        max-height: 80px !important;
    }
}

/* OJS logo with site logo class */
.has_site_logo .pkp_site_name,
.has_site_logo .pkp_navigation_primary_wrapper {
    width: auto;
    border-radius: 12px;
}

/* ============================================
   3. NAVIGATION
   ============================================ */
.pkp_navigation_primary_wrapper {
    background: linear-gradient(90deg, var(--zijnr-navy) 0%, var(--zijnr-teal) 100%);
    padding: 0;
}

.pkp_navigation_primary > li > a {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkp_navigation_primary > li > a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--zijnr-light-teal) !important;
}

/* User Navigation (Login/Register) */
.pkp_navigation_user_wrapper {
    background: transparent;
    padding: 5px 0;
}

.pkp_navigation_user > li > a {
    color: var(--zijnr-teal) !important;
    font-size: 12px;
    font-weight: 600;
}

.pkp_navigation_user > li > a:hover {
    color: var(--zijnr-navy) !important;
}

/* Search icon in nav */
@media (min-width: 992px) {
    .pkp_navigation_search_wrapper a {
        color: rgba(255, 255, 255, 0.85);
    }
}

/* ============================================
   4. CONTENT & ARTICLE CARDS
   ============================================ */
.obj_issue_summary,
.obj_article_summary {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--zijnr-teal);
    border-radius: var(--radius);
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.obj_issue_summary:hover,
.obj_article_summary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--zijnr-blue);
}

/* Article Titles */
.obj_article_summary .title a {
    color: var(--zijnr-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
    transition: color 0.2s;
}

.obj_article_summary .title a:hover {
    color: var(--zijnr-teal);
}

/* Article meta (authors, date) */
.obj_article_summary .authors,
.obj_article_summary .published {
    color: var(--text-light);
    font-size: 13px;
}

/* PDF / Galley Buttons */
.galleys_links a {
    background-color: var(--zijnr-teal);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.galleys_links a:hover {
    background-color: var(--zijnr-navy);
}

/* RTL border fix */
body[dir="rtl"] .obj_article_summary {
    border-left: 1px solid var(--border-color);
    border-right: 5px solid var(--zijnr-teal);
}

/* ============================================
   5. SIDEBAR STYLING
   ============================================ */
.pkp_block {
    
}

.pkp_block .title {
    font-size: 15px;
    font-weight: 700;
    color: var(--zijnr-navy);
    border-bottom: 2px solid var(--zijnr-teal);
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Make a Submission Button */
.block_make_submission a {
    background: var(--zijnr-teal) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    padding: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.block_make_submission a:hover {
    background: var(--zijnr-navy) !important;
    transform: scale(1.02);
}

/* ============================================
   6. HOMEPAGE IMAGE
   ============================================ */
.pkp_page_index .homepage_image img {
    display: block;
    width: 22%;
    height: auto;
    margin: 10px;
}

/* Content images */
.content img {
    /* max-width: 92%; */
    margin: auto !important;
    text-align: center !important;
    display: block;
    margin-bottom: 10px !important;
    /* max-height: 80px; */
    padding-bottom: 5px;
    border: solid;
    border-style: double;
}

/* ============================================
   7. FOOTER
   ============================================ */
.pkp_structure_footer_wrapper {
    background-color: var(--zijnr-navy);
    color: #f1f5f9;
    padding: 0;
    border-top: 5px solid var(--zijnr-teal);
}

.pkp_footer_content {
    padding: 0;
    text-align: left;
}

/* ============================================
   8. PROFESSIONAL 3-COLUMN FOOTER (custom HTML block)
   ============================================ */
.custom-footer {
    background-color: var(--zijnr-navy);
    color: #f1f5f9;
    padding: 50px 0 10px;
    margin-top: 0;
    border-top: 5px solid var(--zijnr-teal);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-column h4 {
    color: var(--zijnr-silver);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 2px solid rgba(141, 169, 196, 0.35);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ffffff;
    transform: translateX(-5px); /* RTL slide left */
}

body[dir="ltr"] .footer-column ul li a:hover {
    transform: translateX(5px); /* LTR slide right */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #94a3b8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul li a:hover {
        transform: none;
    }

    .footer-bottom {
        margin-top: 20px;
    }
}

/* ============================================
   9. ARTICLE DETAIL PAGE ENHANCEMENTS
   ============================================ */

/* Section headings on article page */
.pkp_structure_main h2,
.pkp_structure_main h3 {
    color: var(--zijnr-navy);
}

/* Keywords / subject labels */
.keywords .keyword,
.obj_article_details .keywords a {
    background-color: var(--zijnr-light-teal);
    color: var(--zijnr-teal);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin: 3px 2px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.keywords .keyword:hover,
.obj_article_details .keywords a:hover {
    background-color: var(--zijnr-teal);
    color: #fff;
}

/* DOI and metadata */
.obj_article_details .doi a {
    color: var(--zijnr-blue);
    font-weight: 600;
    text-decoration: none;
}

.obj_article_details .doi a:hover {
    color: var(--zijnr-teal);
    text-decoration: underline;
}

/* ============================================
   10. BREADCRUMB & PAGE HEADINGS
   ============================================ */
.pkp_breadcrumbs a {
    color: var(--zijnr-teal);
    text-decoration: none;
    font-size: 13px;
}

.pkp_breadcrumbs a:hover {
    color: var(--zijnr-navy);
    text-decoration: underline;
}

/* Page title banner */
.page_title_wrapper {
    background: linear-gradient(135deg, var(--zijnr-navy) 0%, var(--zijnr-teal) 100%);
    color: #fff;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: var(--radius);
}



/* ── ZIJNR Nav Block ── */
.zijnr-nav-block {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #ffffff;
    border: 1px solid #dde8dc;
    border-top: 4px solid #2d6a2d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}

.zijnr-nav-block .block-title {
    background: #2d6a2d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zijnr-nav-block .block-title svg {
    flex-shrink: 0;
}

/* ── Section Groups ── */
.zijnr-nav-section {
    border-bottom: 1px solid #eef3ee;
}

.zijnr-nav-section:last-child {
    border-bottom: none;
}

.zijnr-nav-section-title {
    background: #f4f9f4;
    color: #1b4d1b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin: 0;
    border-bottom: 1px solid #dde8dc;
}

/* ── Nav Links ── */
.zijnr-nav-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zijnr-nav-block ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #1e3a1e;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid #f0f5f0;
}

.zijnr-nav-block ul li:last-child a {
    border-bottom: none;
}

.zijnr-nav-block ul li a:hover {
    background: #edf5ed;
    color: #2d6a2d;
    padding-left: 22px;
}

.zijnr-nav-block ul li a .link-icon {
    width: 18px;
    height: 18px;
    color: #2d6a2d;
    flex-shrink: 0;
}

/* ── Special: Home & Contact links ── */
.zijnr-nav-block ul li a.is-home {
    background: #2d6a2d;
    color: #ffffff;
    font-weight: 700;
}

.zijnr-nav-block ul li a.is-home:hover {
    background: #1b4d1b;
    color: #fff;
    padding-left: 22px;
}

.zijnr-nav-block ul li a.is-home .link-icon {
    color: #ffffff;
}

/* ── Login button ── */
.zijnr-login-btn {
    display: block;
    margin: 12px 16px 14px;
    background: #e07b2a;
    color: #fff !important;
    text-align: center;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.zijnr-login-btn:hover {
    background: #c46420 !important;
    color: #fff !important;
}
























.zijnr-footer {
    background: linear-gradient(135deg, #14213d 0%, #1b3a1b 100%);
    color: #f1f5f9;
    padding: 50px 0 0;
    border-top: 5px solid #2d6a2d;
    font-family: "Inter", "Segoe UI", sans-serif;
    margin-top: 0;
}

.zijnr-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    padding: 0 30px;
}

/* ── Column Headings ── */
.zijnr-footer-col h4 {
    color: #e07b2a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(224, 123, 42, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}

.zijnr-footer-col h4 svg {
    flex-shrink: 0;
}

/* ── About / branding column ── */
.zijnr-footer-col .footer-journal-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.zijnr-footer-col .footer-journal-abbr {
    display: inline-block;
    background: #2d6a2d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.zijnr-footer-col .footer-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.zijnr-footer-col .footer-issn {
    font-size: 12px;
    color: #7a9bb5;
    line-height: 1.8;
}

.zijnr-footer-col .footer-issn span {
    display: block;
}

/* ── Nav link lists ── */
.zijnr-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zijnr-footer-col ul li {
    margin-bottom: 10px;
}

.zijnr-footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.zijnr-footer-col ul li a:hover {
    color: #ffffff;
    gap: 13px;
}

.zijnr-footer-col ul li a svg {
    color: #2d6a2d;
    flex-shrink: 0;
    transition: color 0.2s;
}

.zijnr-footer-col ul li a:hover svg {
    color: #e07b2a;
}

/* ── Contact items ── */
.zijnr-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: #cbd5e1;
}

.zijnr-footer-contact-item svg {
    color: #e07b2a;
    margin-top: 2px;
    flex-shrink: 0;
}

.zijnr-footer-contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.zijnr-footer-contact-item a:hover {
    color: #ffffff;
}

/* ── Submit button ── */
.zijnr-footer-submit-btn {
    display: block;
    background: #2d6a2d;
    color: #fff !important;
    text-align: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    margin-top: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.zijnr-footer-submit-btn:hover {
    background: #e07b2a;
    transform: translateY(-2px);
}

/* ── Divider ── */
.zijnr-footer-divider {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Bottom bar ── */
.zijnr-footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 30px;
    margin-top: 0;
}

.zijnr-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.zijnr-footer-bottom-inner p {
    margin: 0;
    font-size: 12.5px;
    color: #64748b;
}

.zijnr-footer-bottom-inner .footer-bottom-links {
    display: flex;
    gap: 20px;
}

.zijnr-footer-bottom-inner .footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.zijnr-footer-bottom-inner .footer-bottom-links a:hover {
    color: #e07b2a;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .zijnr-footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .zijnr-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .zijnr-footer-bottom-inner .footer-bottom-links {
        justify-content: center;
    }
}



}





tr ,td
{
     border: 1px solid #2c5aa0;
}

.ojs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.ojs-table th,
.ojs-table td {
    border: 1px solid #2c5aa0;   /* ← border color */
    padding: 10px;
    text-align: left;
}

.ojs-table th {
    background-color: #f2f6ff;
    font-weight: bold;