/* General Layout Adjustments */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Customization */
#header {
    background-color: #03693a; /* Set header color */
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

#header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* Navigation Menu */
.navbar {
    background-color: #03693a; /* Match navbar to header */
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

.navbar a:hover {
    background-color: #575757;
}

/* Article Titles */
h2.article-title {
    color: #03693a; /* Set article titles to the same green */
    font-size: 1.8em;
}

/* Footer Customization */
#footer {
    background-color: #03693a; /* Match footer to header */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

#footer a {
    color: white;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

/* Button Styles */
button, .btn {
    background-color: #03693a; /* Button background */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover, .btn:hover {
    background-color: #fda336; /* Hover background color */
    color: #03693a; /* Text color on hover */
}

/* Page Title */
.page-title {
    font-size: 2em;
    color: #03693a; /* Page title color */
    margin-bottom: 20px;
}

/* Table of Contents */
#toc {
    font-size: 1.2em;
    margin: 20px 0;
}

#toc li {
    margin: 5px 0;
}

#toc a {
    color: #03693a; /* Table of contents link color */
    text-decoration: none;
}

#toc a:hover {
    text-decoration: underline;
}

/* Miscellaneous Styling */
.article-meta {
    font-size: 0.9em;
    color: #666;
}

.article-body {
    font-size: 1.1em;
    line-height: 1.8;
    margin-top: 20px;
}
