
			html, body {
        height: 100%;
        margin: 0;
        padding: 0;

    #info-box {
        position: absolute;
        border: 1px solid #007bff;
        padding: 6px;
        pointer-events: none;
        z-index: 1000;
        display: none;
        max-width: 350px;
        border-radius: 6px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        background-color: rgba(255, 255, 255, 0.85);
        transition: all 0.2s ease;
    }

    #info-box h5 {
        margin: 0;
        font-size: 17px;
        
    }

    #info-box p {
				margin: 0;
        font-size: 16px;
        
    }

    .leaflet-marker-icon:hover {
        filter: brightness(1.4);
        cursor: pointer;
    }

    .leaflet-polygon {
        transition: opacity 0.4s, weight 0.3s ease;
        color: black;
        weight: 2;
        cursor: pointer;
    }

    .leaflet-polygon.hovered {
        opacity: 0.7;
        weight: 4;
    }
			