body {
    font-family: "Merriweather", serif;
    background: #fffdf7;
}

#title {
    display: flex;
    justify-content: center;
}

#map {
    min-width: 500px;
    height: 100%;
}

#map_container{
    flex: auto;
    width: 100%;
    float: left;
    height: 500px;
    border: black;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
}

#side_box {
    /* display: flow-root; */
    flex: 1;
    /* position: relative; */
    height:100%;
    min-width: 200px;
    /* max-width: 500px; */
    margin-left: 1em;
    padding: 0 1em;
    border: black;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    overflow: hidden;
}

img {
    object-fit: contain;
    max-width: 100%;
}

#selected_peak {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    width: 100%;
    font-weight: bold;
}

#selected_peak_completion_date{
    margin: 1em auto;
    font-weight: bold;
}

#selected_peak_image {
    border: 2px;
    border-style: solid;
    border-color: black;
    border-radius: 5px;
    display: none;
}

#form_div {
    position: relative;
    height: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
}

#progress_form{
    height: 100%;
    width: 100%;
}

#main_ui_parent{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#main_ui_child {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#selected_peak_tbl {
    height: 5em;
    margin: 0 -1em;
    padding: 0 1em;
}

.northern-fells{
    background: #64232c;
    color: white;
}

.far-eastern-fells {
    background: #d42b4e;
    color: white;
}

.central-fells {
    background: #0098d2;
}

.eastern-fells {
    background: #2fa8a2;
}
.north-western-fells {
    background: #e0c211;
}
.southern-fells {
    background: #c0703b;
}
.western-fells {
    background: #25a27e;
}
