#map {
    width: 100vw;
    height: 100vh;
}
body {
    margin: 0;
    min-width: 280px;
    font-family: sans-serif;
}
#infoContainer {
    background-color: #999;
    border: 1px solid #333;
    border-radius: 0.5em;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 95%;
    position: fixed;
    left: 2.5vw;
    bottom: 2em;
    
}
#rtDataTable {
    padding-right: 0.5em;
}
#rtDataTable td,
#rtDataTable th {
    padding: 0.25em;
    padding-right: 0.5em;
}
#reloadButton{
    border-bottom-left-radius: 0.5em;
    border-top-left-radius: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    background-color: #999;
    color: black;
    border-right: 2px solid #333;
    display: flex;
    font-weight: bold;
    flex-direction: column;
    justify-content: center;
    
}
#reloadButton:hover {
    cursor: pointer;
    transition: color 0.5s , background-color 0.5s;
    background-color: #333;
    color: white;
}
@media (min-resolution: 100dpi) {
  body {
    font-size: 200%;
  }
}
