    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
    }

    #map {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
    }

    #filterPanel {
      z-index: 1050;
      width: 320px;
    }

    #infoPanel {
      width: 300px;
      height: 100vh;
      z-index: 1045;
      overflow-y: auto;
    }



* {
    font-family: 'Tahoma', Verdana, Geneva, Segoe UI, sans-serif;
    font-size: 14px;
}

@media (max-width: 768px) {
    #filterPanel {
        width: 100vw;
        height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        margin: 0;
        top: 0;
        left: 0;
    }

    #infoPanel {
        position: static !important;
        width: 100% !important;
        height: auto;
    }

    #map {
        margin: 0 !important;
    }
}


@media (max-width: 768px) {
    #togglePanelBtn {
        top: 1rem;
        left: 1rem;
    }

    #toggleLegendBtn {
        bottom: 1rem;
        right: 1rem;
    }
}



.leaflet-control.legend {
    background: rgba(255,255,255,0.9);
    padding: 10px 12px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
}
.legend span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    border-radius: 2px;
}

#togglePanelBtn {
    top: 1rem;
    left: 1rem;
    z-index: 1050;
}

#toggleLegendBtn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
}

#mapLegend {
    position: fixed;
    bottom: 1rem;
    right: 320px;
    z-index: 1000;
    width: 200px;
}







