html, body {
    margin: 0;
    height: 100%;
    font-family: Monaco, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- Top navigator designs ---- */

.top-bar {
    background-color: #f0f0f0;
    /* Match the page background color */
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    padding: 8px 16px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar a {
    color: darkgreen;
    /* Set the text color to dark green */
    text-decoration: none;
    padding: 8px 16px;
    text-align: center;
    display: flex;
    /* Make the anchor a flex container */
    align-items: center;
    /* Vertically center the text */
}

/* Align the 'Contact' link to the right */
.top-bar a.right-align {
    margin-left: auto;
    margin-right: 20px;
}

.top-bar a:hover {
    background-color: #e0e0e0;
    /* Optional: subtle hover effect */
    border-radius: 2px;
}

.top-bar a.no-hover:hover {
    background-color: transparent;
    /* Remove background change */
    border-radius: 0;
    /* Remove border-radius if needed */
}

.top-bar-image {
    height: 24px;
    width: auto;
}

/* ---- Content designs ---- */

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure it fills the full viewport height */
}

.content {
    margin-top: 60px;
    padding: 20px;
    flex: 1;
}

a img {
    height: 50px;
    width: auto;
}

/* ---- Footer bar designs ---- */

.footer {
    background-color: #f0f0f0; /* Light gray background */
    text-align: center;
    margin-top: 50px;
    padding: 1em 0; /* 20px; */
}

.footer-content {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text inside */
    width: 100%; /* Ensure it spans the full width of the page */
}

/* Footer Logo */
.footer-logo {
    max-width: 150px; /* Adjust size as needed */
    margin-bottom: 15px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: darkgreen;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline; /* Optional hover effect */
}

.footer-line {
    border: none;
    border-top: 1px solid #ccc; /* Light gray line */
    margin: 15px auto;
    width: 80%; /* Adjust width as needed */
}

.footer-copyright {
    font-size: 14px;
    color: #555; /* Darker gray for text */
}

.footer-copyright .footer-name {
    font-weight: bold;
    color: darkgreen; /* Match the link color */
}