:root {
    --black: #363636;
    --red: #75595A;
    --blue: #4990AC;
    --grey: #827B7C;
    --white: #E7E8EE;
}

.select {
    max-width: fit-content;
    padding: 10px;
}
  
body, html {
    background-color: var(--white);
    margin:0;
    padding:0;
    color: var(--black);
    font-family:Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding:40px;
}

#map_container {
    margin-top:20px;
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
}

#map { 
    height: 1000px;
    width: 100%; 
    border-radius: 10px;
}