html, body {
    margin: 0;
    font-family: "Inter", sans-serif;
  }
  
  #map { 
      width: 100%;
      height: 100vh; 
  }
  
  /* Adjust overall Leaflet map font scaling */
  .leaflet-container {
    font-size: 14px;
  }
  
  /* project cards */
  .leaflet-popup {
    width: 360px;
    height: auto;  
  }
  /* cards */
  .project-card {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;  
  }
  /* img */
  .project-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 4px;
  
  }
  /* tags */
  ul.tags {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .tags {
    list-style: none;  
    display: flex;
    flex-wrap: nowrap;
    align-items: left;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 1em;  
  }
  
  .tags li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
    padding: 6px 12px;
    margin: 0;
    font-size: 1em;
    font-weight: 240;
    box-sizing: border-box;
  
    color: #222;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
  
    /* backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px); */
    border: 1px solid #888;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  
    transition: scale 0.3s ease-out;
  }
  
  .tags li a:hover {
    scale: 95%;
    cursor: default;
  }
  
  /* title */
  .project-title {
    font-family: "Inter", sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #222;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  /* description */
  .project-description {
    font-family: "Inter", sans-serif;
    font-size: 1em;
    font-weight: 350;
    color: #333;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  
  /* link */
  .project-link {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 1.2em;
    font-weight: 320;
    color: #fff !important;
    display: inline-block;
    background-color: #000;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: background 0.3s ease-out;
    transition: scale 0.3s ease-out;
  }
  
  .project-link:hover {
    scale: 95%;
    background-color: #333;
    color: #fff !important;
  }
  
  /* customIcon */
  
  /* cluster icon */
  .marker-cluster {
      background-color: #000;
      color: #fff;
      font-size: 1rem;
      font-weight: 450;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      justify-content: center;
      align-items: center;
      display: inline-flex;
      text-align: center;
      line-height: 32px;  
  }
  