
    #map {
        width: 100%;
        height: 100vh;
    }


    #map {
        position: relative;
    }

    #map::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        /* This makes sure the overlay doesn't interfere with map interaction */
        /* background: radial-gradient(ellipse at center, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
    z-index: 1000; Adjust if needed to ensure the shadow is above the map but below controls */
    }



    .info {
        padding: 6px 8px;
        font: 14px/16px Arial, Helvetica, sans-serif;
        background: white;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        border-radius: 5px;
    }

    .info h4 {
        margin: 0 0 5px;
        color: #777;
    }

    .leaflet-bar a,
    .leaflet-bar a:hover {
        background-color: #fff;
        color: #333;
        border-radius: 4px;
    }

    .leaflet-control-zoom {
        border-radius: 4px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .text-labels {
        text-align: center;
        font-size: 14px;
        /* Adjust font size to 15px */
        font-weight: 400;
        /* Set font weight to semi-bold */
        color: black;
        /* Text color */
        text-shadow: 1px 1px 2px white, 0 0 1em white;
        /* White shadow for better legibility */
        white-space: normal;
        /* Wrap text */
        padding: 1px;
        /* Add some padding */
        width: auto;
        /* Set width to auto to accommodate text length */
        font-family: 'Roboto', sans-serif;

    }

    .text-labels-new {
        text-align: center;
        font-size: 18px;
        /* Adjust font size to 15px */
        font-weight: 400;
        /* Set font weight to semi-bold */
        color: black;
        /* Text color */
        text-shadow: 1px 1px 2px white, 0 0 1em white;
        /* White shadow for better legibility */
        white-space: normal;
        /* Wrap text */
        padding: 1px;
        /* Add some padding */
        width: auto;
        /* Set width to auto to accommodate text length */
        font-family: 'Roboto', sans-serif;

    }



    .filter-button {
        position: relative;
        margin: 0;
        background-color: #f47920;
        color: #fff;
        box-shadow: none;
        border-radius: 40px;
        box-shadow: 0 1px 4px -1px rgba(0, 0, 0, .3);
        cursor: default;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-radius: 40px;
        box-shadow: 0 1px 4px -1px rgba(0, 0, 0, .3);

    }

    .filter-button {
        background-color: #19477e;
        color: #f8f2f2;
        padding: 5px 8px;
        /* Adjust padding as needed for proper spacing */
        font-size: 15px;
        border: none;
        border-radius: 0;
        /* Set border-radius to 0 for a rectangular shape */
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* To space out the text and icon */
        cursor: pointer;

    }


    .filter-box {
        padding: 10px;
        background: white;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 50px;
        left: 10px;
        z-index: 1000;
        display: none;
        /* Initially hidden */
    }

    .filter-box h4 {
        margin-top: 0;
    }


    .filter-icon {
        margin-left: 8px;
        /* Space between icon and text */
        /* If you want to adjust the icon size independently from the text, uncomment the next line and set the desired font size */
        /* font-size: 16px; */
    }

    .slider-container {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .slider-container .range-value {
        flex: 1;
        text-align: center;
    }

    .slider {
        -webkit-appearance: none;
        /* Override default CSS styles */
        appearance: none;
        width: 100%;
        /* Full-width */
        height: 25px;
        /* Specified height */
        background: #d3d3d3;
        /* Grey background */
        outline: none;
        /* Remove outline */
        opacity: 0.7;
        /* Set transparency (cross-browser) */
        -webkit-transition: .2s;
        /* 0.2 seconds transition on hover */
        transition: opacity .2s;
    }

    .filter-section label,
    .display-section label {
        display: block;
        margin: 5px 0;
    }

    /* Style the filter box labels */
    .filter-box label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .filter-box label input[type="checkbox"] {
        margin-right: 5px;
    }

    .filter-box .display-section {
        margin-top: 15px;
    }






    /* For noUiSlider */
    .noUi-handle {
        height: 16px;
        /* New height for the handle */
        width: 16px;
        /* New width for the handle */

        background-color: #ddd;
        /* Handle background color */
        /* Additional styling as needed */
    }

    #slider {

        width: 170px;
    }