/* Adjust the LayersControl panel dimensions and styling */
.leaflet-control-layers-overlays::before {
    content: "Filter by Station Type";
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}
.leaflet-control-layers {
    max-height: 300px;    /* Set maximum height */
    width: 200px;         /* Set width */
    overflow-y: auto;     /* Enable vertical scrolling if content exceeds height */
    font-size: 14px;      /* Adjust font size within the control */
    /* Add additional styling as needed */
}

/* Optional: Style overlay titles */
.leaflet-control-layers-overlays label {
    font-weight: bold;
    padding-left: 4px;
    /* Additional styling for overlay labels */
}