body {
    background-color: #fdfdfd; 
    color: #000;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 11pt;
    margin: 0;
    /* Flexbox keeps the footer at the bottom */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* The wrapper stays transparent */
header {
    width: 100%;
    padding: 10px 0;
}

/* The background is ONLY inside this centered box */
.header-content {
    max-width: 900px;
    margin: 0 auto;   /* Centers the box */
    padding: 5px 10px;
    background-color: #f6f6ef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid #ddd; Optional: adds definition to the box */
}

/* Main body container (no background) */
.main-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 10px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    margin-left: 15px;
}
h2 { margin: 0; font-size: 14pt; }

.nav-links .signout {
    margin-left: 0;
}

.logo h2 {
    margin: 0;             /* Removes extra spacing around the header */
    font-size: 25px;       /* Noticeable but not "too big" */
    font-weight: bold;     /* Keeps it looking like a brand */
    color: #000;           /* Clean black, or your preferred brand color */
    letter-spacing: -0.5px; /* Optional: tightens text for a modern logo look */
}

#content {
    max-width: 900px;
    margin: 0 auto;       /* This centers the "box" on the page */
    text-align: left;     /* This keeps the text aligned to the left inside the box */
    flex: 1;              /* This keeps pushing the footer to the bottom */
    /* padding: 5px;        Adds some "breathing room" inside the box */
    padding-top: 10px;
    width: 100%;          /* Ensures it stays responsive on smaller screens */
    box-sizing: border-box; /* Makes sure padding doesn't break the 900px width */
}

/* 3. Style your footer (Optional) */
#footer {
    width: 100%;               /* Spans the whole screen */
    background-color: #f6f6ef; /* The color now goes edge-to-edge */
    border-top: 1px solid #ddd;
    margin-top: auto;          /* Essential for the "Sticky Footer" trick */
}

.footer-content {
    max-width: 900px;          /* Limits the text area */
    margin: 0 auto;            /* Centers the text area */
    padding: 5px 5px;
    display: flex;             /* Keeps your layout items aligned */
    justify-content: space-between;
    align-items: center;
    
}

#footer {
    max-width: 900px;
    margin: 0 auto;   /* Centers the box */
    padding: 5px 10px;
    background-color: #f6f6ef;
    display: flex;
    justify-content: space-between;
    align-items: center;
  /* background-color: #f6f6ef;
  max-width: 900px;
  padding: 5px 10px;
  text-align: center; */
}

.btn-primary {
    background-color: #007bff; /* Bright Blue */
    color: white;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
}