/* General Styles */
body {
    font-family: 'Helvetica', sans-serif;
    background-color: #D7E2CF;
    color: #004500;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    width: 90%; /* Limit the width of the content */
    max-width: 1200px; /* Set a maximum width */
    margin: 20px auto; /* Center the container and add vertical spacing */
    padding: 20px; /* Add padding inside the container */
    border-radius: 8px; /* Optional: Add rounded corners */
}

h1, h2, h3, h4, h5, h6 {
    color: #004500;
    text-align: center; /* Center-align headings */
}

a {
    color: #004500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 35px;
    background-color: #D7E2CF;
    color: #004500;
    width: 100%; /* Ensure the navbar spans the full width */
    box-sizing: border-box; /* Include padding and border in width */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Navbar links on the left */
.navbar-links {
    display: flex;
    gap: 20px;
    flex-direction: row; /* Align links horizontally */
    flex: 1; /* Allow the links to take up available space */
}

/* Center the logo */
.navbar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Center the logo in the available space */
}

/* Instagram icon on the right */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1; /* Push the social icons to the right */
    justify-content: flex-end;
}

/* Hamburger button (hidden by default) */
.hamburger {
    display: none; /* Hide hamburger button by default */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #004500;
    cursor: pointer;
}

/* Navbar links (visible by default) */
.navbar-links {
    display: flex; /* Show links by default */
    gap: 20px;
    flex-direction: row; /* Align links horizontally */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger button on mobile */
    }

    .navbar-logo {
        flex: 0 0 80%; /* Take up the full width */
        justify-content: center; /* Center the logo */
        margin: 10px 0; /* Add spacing above and below the logo */
    }

    .navbar-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column; /* Stack links vertically */
        gap: 10px;
        position: absolute;
        top: 85px; /* Position below the navbar */
        left: 20px;
        width: 100%; /* Full width for dropdown */
        background-color: #D7E2CF; /* Match navbar background */
        padding: 10px 0;
        z-index: 1000;
        box-sizing: border-box; /* Include padding in width */
    }

    .navbar-links.active {
        display: flex; /* Show links when hamburger is clicked */
    }
}

/* Navbar logo styling */
.navbar-logo img {
    height: 4.5rem;
    max-height: 100%; /* Ensure it doesn't exceed its container */
    width: auto; /* Maintain aspect ratio */
}

/* Instagram icon styling */
.social-icon {
    width: 24px; /* Set the icon size */
    height: 24px; /* Ensure the icon is square */
    margin-right: 10px; /* Add padding to the right of the icon */
    vertical-align: middle; /* Align the icon vertically with text */
}

/* Buttons */
.btn-primary {
    background-color: #004500;
    border-color: #004500;
    color: #D7E2CF;
    padding: 10px 20px; /* Add padding for better button size */
    border-radius: 5px; /* Add rounded corners */
}

.btn-primary:hover {
    color: #004500;
}

/* Tables */
.table {
    background-color: #ffffff;
    border: 1px solid #004500;
    width: 100%; /* Make the table span the full width of the container */
    text-align: center; /* Center-align table content */
}

.table th {
    background-color: #004500;
    color: #D7E2CF;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #EDCEDA;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

/* Footer */
.footer {
    background-color: #004500;
    color: #D7E2CF;
    display: flex;
    justify-content: center; /* Center the copyright text */
    align-items: center;
    padding: 10px 20px;
    width: 100%; /* Ensure the footer spans the full width */
    box-sizing: border-box; /* Include padding in width */
    position: relative; /* Allow positioning of the Employee Login link */
}

.footer span {
    flex: 1; /* Allow the copyright text to take up space */
    text-align: center; /* Center-align the text */
}

.footer .employee-login {
    color: #ffffff; /* Make the text white */
    text-decoration: none;
    font-size: 0.9rem;
    position: absolute;
    right: 20px; /* Position the link on the right side */
}

.footer .employee-login:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Flexbox container for centering */
.flex-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
    min-height: 20vh; /* Reduce the height to 80% of the viewport */
    text-align: center; /* Center text inside the container */
    padding: 10px; /* Add some padding around the content */
    margin: 0 auto; /* Center the container horizontally */
    max-width: 800px; /* Limit the width of the container */
    width: 100%; /* Ensure the container spans the full width */
    box-sizing: border-box; /* Include padding in width */
}

/* Left-align ordered list items inside the flex-container */
.flex-container ol {
    text-align: left; /* Left-align the text */
    margin: 0; /* Remove extra margin */
    padding-left: 20px; /* Add padding for indentation */
}

.flex-container ol li {
    margin-bottom: 10px; /* Add spacing between list items */
}

/* Section styling */
.section {
    margin-bottom: 20px; /* Add spacing between sections */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.2rem;
    margin: 0.2rem 0;
}

/* Constrain image to 90% of the container width */
.interior-image {
    width: 80%; /* Set the image width to 90% of its container */
    height: auto; /* Maintain the aspect ratio */
    display: block; /* Remove inline spacing below the image */
    margin: 0 auto; /* Center the image horizontally */
    border-radius: 8px; /* Optional: Add rounded corners for a polished look */
    filter: grayscale(90%); /* Make the image black and white */
}

.calendar-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0 auto; /* Center the container horizontally */
}