/* Base Styles */
body {
    line-height: 1.6;
    font-family: Arial, sans-serif;
    font-size: 11pt;
    color: #000000;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Responsive container for all pages */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Image scaling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header-img {
    width: 100%;       /* Forces it to be as wide as the container */
    height: auto;      /* Keeps the aspect ratio correct */
    display: block;    /* Removes extra whitespace below the image */
}

/* Links */
a:link, a:visited {
    color: #000000;
    text-decoration: none;
}

/* Header & Nav */
.site-header {
    margin-bottom: 20px;
}

/* Container for the nav bar */
.nav-bar {
    background-color: #214F2B;
    padding: 10px;
    text-align: center;
    margin-top: 5px;
    /* This prevents text wrapping if the screen is very small */
    white-space: nowrap; 
}

/* Ensure links are clickable and spaced */
.nav {
    display: inline-block;
    padding: 5px 10px;
    color: #FFFFFF !important;
}

.nav-separator {
    color: #FFFFFF;
}

/* Clean up mobile padding */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px; /* Reduced padding on mobile */
}

.nav:link, .nav:visited {
    color: #FFFFFF;
    font-size: 10pt;
    font-weight: normal;
    text-decoration: none;
    padding: 0 5px;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 20px;
    font-size: 10pt;
    color: #666;
    border-top: 1px solid #666;
    margin-top: 40px;
}

/* Legacy table support (kept if you still need it for specific content) */
table.sides {
    border-left: 1px solid black;
    border-right: 1px solid black;
    width: 100%;
}