#content div:last-child {
    padding-bottom: 100px;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
#header_pad {
    height: 235.5px;
    margin-bottom: 1em;
}

#instructions {
    margin-bottom: 0 !important;
}
#instructions h3 {
    padding: 0.5em;
    text-align: center;
    text-decoration: underline;
}
#format_instructions {
    display: flex;
    justify-content: space-between;
}
.format_instruction {
    border-radius: 5px;
    border: 2px solid red;
    padding: 0.5em;
}

/* Navigation */
#nav {
    background-color: red;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
    #nav_links {
        display: flex;
        justify-content: space-around;
        flex: 1;
    }

    #page_links {
        display: flex;
        justify-content: space-around;
        flex: 1;
    }
    #nav a {
        flex: 1;
        color: white;
        padding: 0.75em;
        border-right: 2px solid darkred;
        cursor: pointer;
        text-align: center;
        white-space: nowrap;
        padding: 0.5em;
    }

/* Policy search page */
#search_container {
    display: flex;
    justify-content: space-between;
}

/* Suggestions */
.suggestable {
    position: relative;
}
    .suggestable input {
        width: 100%;
    }
    .suggestable label {
        font-weight: bold;
    }
    .suggestions {
        border-radius: 10px;
        overflow: scroll;
        min-width: 400px;
        position: absolute;
        top: 100%;
        left: 0;
    }


/* Address Book */
#address_book_filter {
    display: flex;
    align-items: flex-end;
}


#content {
    width: 95%;
    margin: auto;
    height: 100px;
}

