#menu_container {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.menu_box {
    margin: 0.5em;
    padding: 1em;
    border: 1px solid #e7e7e8;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

#menu_container h2 {
    margin: 0;
    margin-bottom: 8px;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #e7e7e8;
    font-size: 2em;
    font-weight: 700;
}

.menu_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
    background-color: #003762;
    color: #ffffff;
    border-bottom: dashed 1px #ffffff;
    font-size: 1.25em;
    font-weight: 700;
    padding: 0.75em;
    text-decoration: none;
}

.menu_item_active, .menu_item:hover {
    background-color: #00589C;
}

.menu_item:last-child {
    border-bottom: none;
}