
#map {
    height: 100vh;
    width: 100%;
  }
  
  .route-info-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 24rem;
    z-index: 1000;
    transition: all 300ms;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  .route-info-expanded {
    padding: 12px;
  }
  
  .route-info-collapsed {
    padding: 8px;
  }
  
  .route-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .route-title {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
  }
  
  .collapse-btn {
    background: white;
    color: #9ca3af;
    border: none;
    cursor: pointer;
    transition: color 200ms;
    padding: 4px;
  }
  
  .collapse-btn:hover {
    color: #6b7280;
  }
  
  .route-detail {
    font-size: 12px;
    color: #4b5563;
    margin: 0 0 4px 0;
  }
  
  .route-from {
    font-weight: 500;
    color: #3A5F3A;
  }
  
  .route-to {
    font-weight: 500;
    color: #ef4444;
  }
  
  .route-distance {
    font-weight: 500;
  }
  
  .legend-container {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6b7280;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
  }
  
  .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 4px;
  }
  
  .legend-parkland {
    background: #90ee90;
  }
  
  .legend-acz {
    background: #f5be68;
  }
  
  .legend-industry {
    background: #818181;
  }
  
  .legend-postsec{
      background: #d280b1;
  }
  .legend-residental{
      background: #f9f9f9;
      border: 1px solid #111827;
  }
  .path-indicator {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
  }
  
  .path-legend {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6b7280;
  }
  
  .path-bar {
    width: 24px;
    height: 4px;
    background: #fbbf24;
    margin-right: 8px;
  }
  
  .greenway-bar {
    width: 24px;
    height: 13px;
    background: #4a7c59;
    margin-right: 8px;
    position: relative;
    border-radius: 6.5px;
  }
  
  .greenway-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 5px;
    background: white;
    transform: translateY(-50%);
    background-image: repeating-linear-gradient(
      to right,
      white 0px,
      white 10px,
      transparent 10px,
      transparent 20px
    );
  }
  
  .greenway-river-bar {
    width: 24px;
    height: 13px;
    background: #4a7c59;
    margin-right: 8px;
    position: relative;
    border-radius: 6.5px;
  }
  
  .greenway-river-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 5px;
    background: #6bcbe8;
    transform: translateY(-50%);
  }
  
  .panam-bar {
    width: 24px;
    height: 13px;
    background: #ff8c00;
    margin-right: 8px;
    position: relative;
    border-radius: 6.5px;
  }

  .footnote{
      max-width: 250px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      margin: 0;
  }