html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

#map {
    width: 100vw;
    flex-grow: 1;
}

#non_map_div {
    margin-top: 10px;
    margin-bottom: 5px;
}

.message {
    font-weight: bold;
}

.error_message {
    font-weight: bold;
    color: red;
}

.success_message {
    font-weight: bold;
    color: green;
}