body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#header h1 {
    margin: 0;
    color: #006747;
    font-size: 28px;
    font-weight: bold;
}
#map {
    position: absolute;
    top: 60px;
    bottom: 0;
    width: 100%;
}
.info {
    padding: 6px 8px;
    background: white;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    max-width: 350px;
}
.info h4 {
    margin: 0 0 5px;
    color: #006747;
}
.legend {
    line-height: 20px;
    color: #555;
}
.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}
.legend i.striped {
    background: #238b45;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0) 0px,
            rgba(255, 255, 255, 0) 3px,
            rgba(255, 255, 255, 0.7) 3px,
            rgba(255, 255, 255, 0.7) 6px
        );
}
