
  /* Custom hover effect for Google Maps Link (Blue) */
  .google-map-tooltip {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
  }

  .google-map-tooltip:hover {
      color: #0056b3; /* Darker blue on hover */
      text-decoration: underline;
      transform: scale(1.1); /* Slight zoom effect */
      transition: all 0.3s ease;
  }

  /* Custom hover effect for Karachi District Link (Green) */
  .karachi-dist-tooltip {
      color: #28a745;
      text-decoration: none;
      font-weight: bold;
  }

  .karachi-dist-tooltip:hover {
      color: #1e7e34; /* Darker green on hover */
      text-decoration: underline;
      transform: scale(1.1); /* Slight zoom effect */
      transition: all 0.3s ease;
  }


