body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
          }
          header {
            background: #003366;
            color: #fff;
            padding: 1rem;
            text-align: center;
          }
          #controls {
            padding: 1rem;
            background: #f0f0f0;
            text-align: center;
          }
          #map {
            height: 80vh;
            width: 100%;
          }
          label {
            margin: 0 0.5rem;
          }
          /* Links - FIX for Safari */
a,
a:visited,
a:hover,
a:active,
a:focus {
  color: white;
  text-decoration: none;
}
.marker-cluster div {
  background-color: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.cluster-blue div { background-color: #007bff; }
.cluster-green div { background-color: #28a745; }
.cluster-purple div { background-color: #6f42c1; }
.cluster-red div { background-color: #dc3545; }
/* Add more as needed */

  .legend-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
  }

  .legend-container label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }

  .legend-container img {
    height: 25px;
    vertical-align: middle;
  }

