#map {
    width: 100%;
    height: 700px;
    position: relative;
    z-index: 1;
}

/* Map legend styling */
.legend {
    line-height: 20px;
    color: #555;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.8;
    color: black;
    outline: 1px solid #ccc;
    border-radius: 2px;
}

.legend h4 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Map title styling */
.title {
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.title h2 {
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.title h3 {
    padding-top: 0px;
    margin-bottom: 0px;
    margin-top: 5px;
    line-height: 1.2;
    font-size: 14px;
}

/* Hover info panel styling */
.info {
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.info h4 {
    margin-top: 0px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Loading indicator */
#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
}