/* General page style */
body{
font-family: Arial, sans-serif;
margin:0;
padding:0;
text-align:center;
background:#f5f5f5;
}

/* Title */
h2 {
    margin-top: 20px;
}

/* Buttons */
button {
    margin: 5px;
    padding: 6px 12px;
    border: 1px solid #999;
    background-color: #f0f0f0;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #ddd;
}

/* Map container */
#map{
height:650px;
width:95%;
margin:20px auto;
border:2px solid black;
}
/* Statistics box */
#stats {
    position: absolute;
    top: 120px;
    left: 30px;
    background: white;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    text-align: left;
}

/* Legend style */
.legend {
    background: white;
    padding: 10px;
    line-height: 18px;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.8;
}
#updateTime{
font-size:14px;
color:#555;
margin-top:-5px;
}