
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* Apply Roboto font globally */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, td, th, input, button {
    font-family: 'Tahoma', sans-serif !important;
    color: #2c2c2c;
    font-size: 16px;
    line-height: 1.6;
}

/* Body Background */
body {
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3 {
    color: #264653;
    font-weight: 600;
}

/* Paragraphs */
p {
    text-align: justify;
    margin-bottom: 15px;
}

/* Navigation Bar */
.pkp_navigation_primary a {
    color: #ffffff;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
}

.pkp_navigation_primary a:hover {
    background-color: #29515d;
}

/* Contact Box */
.contact_details {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    max-width: 700px;
    margin: 20px auto;
}

.contact_details h3 {
    margin-top: 0;
    color: #1d3557;
}

.contact_details a,
.contact_details span {
    display: block;
    color: #0077b6;
    margin: 5px 0;
}

/* Buttons */
.button.submit {
    background-color: #0077b6;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.button.submit:hover {
    background-color: #023e8a;
}

/* Footer */
.pkp_site_footer {
    background-color: #264653;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Most Read Articles Section */
.most_read_articles_by_author {
    background-color: #f7fafa;
    border-left: 5px solid #0077b6;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    font-family: 'Tahoma', sans-serif;
}

/* Heading */
.most_read_articles_by_author h3 {
    color: #264653;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Article List Styling */
.most_read_articles_by_author ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.most_read_articles_by_author li {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
}

/* Article Links */
.most_read_articles_by_author a {
    color: #0077b6;
    text-decoration: none;
    font-weight: 500;
}

.most_read_articles_by_author a:hover {
    text-decoration: underline;
    color: #023e8a;
}


