/* STANDARD STYLE CHANGES FOR ALL */
* {
    box-sizing: border-box;
    font-family: Euclid Circular B, Arial, Helvetica, sans-serif;
}

html {
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    margin: 0;
}

body {
    margin: 0;
    height: 100%;
    width: 100%;
}

h1, h2, h3, p {
    margin: 0;
}


/* SPECIFIC TO THIS WEBPAGE */
.header {
    margin: 0;
    padding: 2rem;
    text-align: center;
}





.selectContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 0rem 0rem 0rem;
}

.selectContainer select {
    width: 10rem;
    height: 2rem;
    background: white;
    text-align: center;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;

}





.mapContainer {
    padding: 1rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position; relative;
}

#map {
    width: clamp(300px, 100%, 1500px);
    height: clamp(300px, 70vh, 1000px);
}


.leaflet-routing-container {
    display: none;
}

