.page-header {
    background-color: #2d2d2d;
    color: #ffffff;
    text-align: left;
    padding: 20px;
    width: 100%;
    /* Ensure it stretches full width */
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    /* vertically center content */
    justify-content: space-between;
    /* margin-bottom: 60px; */
}

.home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.page-footer {
    background-color: #2f2f2f;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    /* Ensure it stretches full width */
    /* position: sticky;
  bottom: 0; */
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.page-title {
    margin-right: auto;
    font-family: Arial, Helvetica, sans-serif;
}

.body-wrapper {
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Lato, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#info-box {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}