/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Charcoal Gray */
    background-color: #F5F5F5; /* White Smoke */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #66CDAA; /* Updated Light Sea Green */
    color: white;
    padding: 8px 0;
    text-align: start;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Logo */
.pkp_site_name .is_img img {
    max-width: 400px; /* Increase the width as needed */
    max-height: 190px; /* Keep the aspect ratio */
}

/* Links */
a {
    color: #1E90FF; /* Updated Dim Blue */
    text-decoration: none;
}

a:hover {
    color: #104E8B; /* Darker blue on hover */
    text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #66CDAA; /* Updated Light Sea Green */
    margin-top: 0;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 2px solid #66CDAA; /* Updated Light Sea Green */
    padding-bottom: 10px;
}

h2 {
    font-size: 2rem;
    border-bottom: 1px solid #5ab597; /* Slightly darker Light Sea Green */
    padding-bottom: 8px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    color: #666666;
}

/* Paragraphs */
p {
    color: #333333; /* Charcoal Gray */
    font-size: 1rem;
    margin: 0 0 20px 0;
    text-align: justify;
}

/* Blockquote */
blockquote {
    font-style: italic;
    background: #AFEEEE; /* Pale Turquoise */
    padding: 15px;
    border-left: 5px solid #66CDAA; /* Updated Light Sea Green */
    margin: 20px 0;
}

/* Lists */
ul, ol {
    margin: 10px 0 20px 40px;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #dddddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #66CDAA; /* Updated Light Sea Green */
    color: white;
}

/* Buttons */
button, .btn {
    background-color: #66CDAA; /* Updated Light Sea Green */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

button:hover, .btn:hover {
    background-color: #5ab597; /* Slightly darker Light Sea Green */
}

/* Footer */
footer {
    background-color: #778899; /* Light Slate Gray */
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Forms */
input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #66CDAA; /* Updated Light Sea Green */
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #5ab597; /* Slightly darker Light Sea Green */
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Center Image */
.center-image {
    display: block;
    margin: auto;
}

/* Journal-Specific Styles */
.journal-header {
    background-color: #66CDAA; /* Updated Light Sea Green */
    color: white;
    text-align: center;
    padding: 50px 0;
    margin-bottom: 40px;
}

.journal-title {
    font-size: 3rem;
    font-weight: bold;
}

.journal-subtitle {
    font-size: 1.5rem;
    color: #F5F5F5; /* White Smoke */
}

/* Code Blocks */
pre, code {
    background-color: #F5F5F5; /* White Smoke */
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

/* Custom Elements */
.custom-badge {
    background-color: #5ab597; /* Slightly darker Light Sea Green */
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 3px;
    display: inline-block;
}

.highlight {
    background-color: #fff0b3;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
