/* --- ROUTE LINE COLOR OVERRIDES (DARKER LINES ON MAP) --- */
/* Target Leaflet routing path elements - comprehensive selectors */

/* Cyan/Blue routes */
.leaflet-routing-container path[stroke="#00DBFF"],
.leaflet-overlay-pane path[stroke="#00DBFF"],
.leaflet-overlay-pane svg path[stroke="#00DBFF"],
path[stroke="#00DBFF"],
svg path[stroke="#00DBFF"] {
    stroke: #006699 !important;
}

/* Green routes - targeting all possible variations */
.leaflet-routing-container path[stroke="#00FF94"],
.leaflet-overlay-pane path[stroke="#00FF94"],
.leaflet-overlay-pane svg path[stroke="#00FF94"],
path[stroke="#00FF94"],
svg path[stroke="#00FF94"],
.leaflet-routing-container path[stroke="#00ff94"],
.leaflet-overlay-pane path[stroke="#00ff94"],
path[stroke="#00ff94"],
svg path[stroke="#00ff94"],
.leaflet-routing-container path[stroke="rgb(0, 255, 148)"],
.leaflet-overlay-pane path[stroke="rgb(0, 255, 148)"],
path[stroke="rgb(0, 255, 148)"],
svg path[stroke="rgb(0, 255, 148)"] {
    stroke: #005533 !important;
}

/* Yellow routes */
.leaflet-routing-container path[stroke="#FFD700"],
.leaflet-routing-container path[stroke="#FFC107"],
.leaflet-routing-container path[stroke="yellow"],
.leaflet-overlay-pane path[stroke="#FFD700"],
.leaflet-overlay-pane path[stroke="#FFC107"],
.leaflet-overlay-pane path[stroke="yellow"],
.leaflet-overlay-pane svg path[stroke="#FFD700"],
.leaflet-overlay-pane svg path[stroke="#FFC107"],
.leaflet-overlay-pane svg path[stroke="yellow"],
path[stroke="#FFD700"],
path[stroke="#FFC107"],
path[stroke="yellow"],
svg path[stroke="#FFD700"],
svg path[stroke="#FFC107"],
svg path[stroke="yellow"] {
    stroke: #B8860B !important;
}

/* Fallback - target all green-ish colors */
.leaflet-overlay-pane path[stroke*="00FF"],
.leaflet-overlay-pane path[stroke*="00ff"] {
    stroke: #005533 !important;
}