body {
    margin: 0; /* Reset margin to avoid unintended gaps */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

header.header {
    background-color: #ffffff;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 20px;
}

header.header .container {
    max-width: 1200px; /* Set a max-width to control the layout */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Space out brand and nav links */
    align-items: center; /* Vertically center content */
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #2c3e50;
}

.navbar {
    display: flex;
    justify-content: center; /* Center-align the navigation links */
    flex: 1; /* Ensure the navbar takes up available space */
}

.navbar-nav {
    display: flex;
    justify-content: center;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.main-content {
    flex: 1;  /* Ensures the content stretches to fill the space */
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.dt-left {
    text-align: left !important;
}

th {
    text-align: left !important;
}

footer.footer {
    background-color: #2c3e50;
    color: black; /* Black text color */
    text-align: center; /* Center-aligns content within the footer */
    padding: 1rem 0; /* Padding around the footer content */
    flex-shrink: 0;
    width: 100%; /* Ensure it spans the full width */
    margin-top: auto; /* Pushes the footer to the bottom */
}

footer.footer .container {
    max-width: 100%; /* Ensure the container spans the full width */
    margin: 0 auto; /* Centers the container */
    text-align: center; /* Center-aligns content inside the container */
    padding: 0 20px; /* Optional: add padding inside the container */
}

.footer p {
    margin: 0; /* Remove default margin from paragraph */
}