/*
#map {
	width: 800px; 
	height: 600px; 
	border: 1px solid #ccc;
}
*/

#progress {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 400px;
    top: 300px;
    width: 200px;
    height: 20px;
    margin-top: -20px;
    margin-left: -100px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 2px;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #76A6FC;
    border-radius: 4px;
}
/* Make layout fluid inside the iframe */

/* General page container */
html, body {
    margin: 0;
    padding: 0;
}

/* Main blocks shouldn’t overflow horizontally */
body > div {
    max-width: 100%;
  /*  overflow-x: hidden; */
}

/* Make the Leaflet map fluid */
#map {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 560px;      /* adjust to taste */
}

/* Leaflet container should follow the map div */
.leaflet-container {
    width: 100% !important;
    height: 100% !important;
}

/* Make the filter table responsive */
table {
    width: 100%;
    border-collapse: collapse;
}

/* On small screens: stack the filter cells vertically */
@media (max-width: 768px) {
    table,
    table tbody,
    table tr,
    table td {
        display: block;
        width: 100%;
    }

    .ui-widget {
        width: 100%;
        box-sizing: border-box;
    }
}