body {
font-family: Arial;
margin:0;
}

.dashboard{
display:flex;
height:90vh;
}

#map{
flex:3;
}

.panel{
flex:1;
padding:10px;
background:#f4f4f4;
}


/* style.css/

/* Overall page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5; /* light gray background */
    margin: 0;
    padding: 20px;
}

/* Dashboard container */
.dashboard {
    display: flex;
    gap: 20px;
}

/* Map styling */
#map {
    flex: 2;
    height: 600px;
    border: 5px solid #2e7d32; /* deep green border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Panel styling */
.panel {
    flex: 1;
    background-color: #ffffff; /* white background */
    border: 3px solid #2e7d32; /* green border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Headings */
h2 {
    text-align: center;
    color: #2e7d32;
}

h3 {
    color: #2e7d32;
    margin-top: 0;
}

/* Filters dropdown */
#typeFilter {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 2px solid #2e7d32;
}

/* Counters box */
.counter-box {
    background-color: #e8f5e9; /* very light green */
    padding: 15px;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: #1b5e20; /* darker green text */
}

/* Responsive layout */
@media (max-width: 900px) {
    .dashboard {
        flex-direction: column;
    }

    #map {
        height: 400px;
    }
}

.counter-box{
position:absolute;
nav-down:10px;
left:10px;
background:white;
padding:10px;
border-radius:5px;
box-shadow:0 0 10px rgba(0,0,0,0.3);
font-size:14px;
z-index:1000;
}

/* Legend box styling */
.legend {
    margin-top: 20px;
    padding: 10px;
    border: 2px solid #2e7d32; /* green border */
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.legend h4 {
    margin: 0 0 10px 0;
    color: #2e7d32;
    text-align: center;
}

/* Legend icons */
.legend-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid #000;
    border-radius: 50%;
}

.legend-icon.burning {
    background-color: red;
}

.legend-icon.dumping {
    background-color: yellow;
}

/* Existing point symbols */
.legend-icon {
    display:inline-block;
    width:15px;
    height:15px;
    border-radius:50%;
    margin-right:8px;
}

.legend-icon.burning{
    background:red;
}

.legend-icon.dumping{
    background:yellow;
    border:1px solid #000;
}

/* Road line symbol */
.legend-line{
    display:inline-block;
    width:25px;
    height:4px;
    margin-right:8px;
}

.legend-line.roads{
    background:#555;
}

/* Assembly boundary symbol */
.legend-boundary{
    display:inline-block;
    width:20px;
    height:15px;
    border:2px solid black;
    margin-right:8px;
}

.assembly-label {
    font-weight: bold;
    color: black;          /* text color */
    font-size: 12px;
    text-shadow: 0 0 2px #fff; /* optional shadow for readability */
    background: none !important; /* removes the white box */
    border: none !important;     /* removes any border */
    box-shadow: none !important; /* removes any shadow */
    padding: 0 !important;       /* remove padding */
}


