/* ========================================
   SciNex Journal of Advanced Sciences (SJAS)
   Professional Journal Style Sheet
   ======================================== */

/* ---------------------
   Body & Typography
---------------------- */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #212121; /* Dark gray for readability */
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* ---------------------
   Headings
---------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #1a237e; /* Deep professional blue */
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* Article Titles */
.article_title a {
    color: #1a237e;
    font-weight: 600;
    text-decoration: none;
}
.article_title a:hover {
    color: #0d1360;
    text-decoration: underline;
}

/* ---------------------
   Links
---------------------- */
a {
    color: #1976d2;
    text-decoration: none;
}
a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* ---------------------
   Buttons
---------------------- */
button, .pkp_button, input[type="submit"] {
    background-color: #1a237e;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover, .pkp_button:hover, input[type="submit"]:hover {
    background-color: #0d1360;
}

/* ---------------------
   Navigation Bar
---------------------- */
.navbar, .pkp_navigation_bar {
    background-color: #f5f5f5;
    border-bottom: 2px solid #1a237e;
}
.navbar a {
    color: #1a237e;
    font-weight: 600;
}
.navbar a:hover {
    color: #0d1360;
}

/* ---------------------
   Footer
---------------------- */
footer, .pkp_footer {
    background-color: #1a237e;
    color: #ffffff;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}
footer a {
    color: #ffffff;
    text-decoration: underline;
}

/* ---------------------
   Tables
---------------------- */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.5em;
}
table th, table td {
    border: 1px solid #cccccc;
    padding: 10px;
    text-align: left;
}
table th {
    background-color: #e8eaf6;
    color: #1a237e;
}

/* ---------------------
   Forms
---------------------- */
input[type="text"], input[type="email"], input[type="password"], textarea, select {
    border: 1px solid #cccccc;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 1em;
}

/* ---------------------
   Alerts & Messages
---------------------- */
.pkp_message {
    background-color: #e3f2fd;
    border-left: 4px solid #1976d2;
    padding: 12px;
    margin-bottom: 1em;
}

/* ---------------------
   Responsive Adjustments
---------------------- */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
}

/* ---------------------
   Optional Professional Touch
   Custom Card Style for Journal Sections
---------------------- */
.section_card {
    border: 1px solid #c5cae9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.section_card h3 {
    color: #1a237e;
}
.journal-tags {
  display: none !important;
}