html, body {
  width: 100%;
  height: 100%;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mapContainer {
    width: 100%;
    flex: 1;
}

.leaflet-tile-container {
    filter: grayscale(1);
}

#map {
    width: 100%;
    height: 100%;
}

* {
    box-sizing: border-box;
}

#uploadForm {
    display: none;
}

.controls {
    border-top: 1px solid black;
    background: lightgray;  
    padding: 10px;
    display: flex;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#uploadButton, #status {
    width: 150px;
}

#status {
    text-align: right;
}

.error {
    font-weight: bold;
    color: red;
}

#colorScale {
    border: 1px solid grey;
    height: 20px;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 400px;
}

#colorScale > * {
    flex: 1;
    text-align: center;
    height: 100%;
}
