:root{
    --bg: #2f3a2f;          /* medium dark sage/forest */
    --bg-accent: #263226;    /* slightly deeper variant */
    --text: #f2f4f0;         /* soft warm off-white */
    --brand: #7fa882;        /* earthy sage green */
    --brand-2: #b2c9b5;      /* lighter sage highlight */
    --card: rgba(255,255,240,0.06);
    --ring: rgba(127,168,130,.35);
}




html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    background:
      radial-gradient(1200px 700px at 80% -10%, rgba(34,211,238,.18), transparent 60%),
      radial-gradient(900px 600px at -10% 20%, rgba(14,165,233,.18), transparent 60%),
      linear-gradient(180deg, var(--bg), var(--bg-accent));
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }



#divContainer {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

#divMap {
    height: 700px;
    z-index: 0;
    border: 2px solid black;
    border-radius: 18px;
    background: #FCFFFC;
}

#divSiteButtons {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 80px;
    z-index: 1000;
}

#divWebButtons {
    position: absolute;
    bottom: 30px;
    right: 10px;
    text-align: right;
    width: 80px;
    z-index: 1000;
}

.leaflet-tile {
  image-rendering: auto;
}

.btnSite {
    margin-top: 5px;
    opacity: 0.55;
    border: 4px solid lightgray;
    border-radius: 15px;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}


#btnOpenURL {
    visibility: hidden;
}

#txtSiteName {
    left: 80px;
    right: 80px;
    margin-inline: auto;
    width: fit-content;
    position: absolute;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #085536;
    bottom: 20px;
    z-index: 1000;
}

#divSelectedTypes {
    position: absolute;
    top: 15px;
    z-index: 1;
    white-space: break-spaces;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #085536;
    font-size: 22px;
    text-align: center;
    left: 20px;
    right: 50px;
}

#divAtt {
    font-size: 10px;
    position: absolute;
    right: 9%;
    margin-left: 30px;
}

@media only screen and (min-width: 1200px) {
    #divSiteButtons {
        left: 20px;
    }
    .btnSite {
        width: 70px;
        height: 70px;
    }
    #txtSiteName {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1200px) {
    #txtSiteName {
        font-size: 28px;
    }
    #divSiteButtons {
        left: 10px;
    }
    .btnSite {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 1000px) {
    #txtSiteName {
        font-size: 26px;
    }
    #divSiteButtons {
        left: 5px;
    }
    #divWebButtons {
        right: 5px;
    }
    .btnSite {
        width: 60px;
        height: 60px;
    }
    #divSelectedTypes {
        font-size: 18px;
    }
}

@media only screen and (max-width: 800px) {
    #txtSiteName {
        font-size: 24px;
    }
    #divSelectedTypes {
        font-size: 17px;
    }
    .btnSite {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 500px) {
    #txtSiteName {
        font-size: 17px;
    }
    #divSelectedTypes {
        font-size: 16px;
    }
}

  /* Overall page text */
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    margin: 0;
    padding: 0;
  }

  /* Section wrappers */
  section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }

  /* Headings */
  h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
  }

  h1 {
    margin-top: 40px;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  h3 {
    font-size: 1.1rem;
    margin-top: 20px;
  }

  /* Paragraphs */
  p {
    margin-bottom: 16px;
    color: #333;
  }

  /* Lead paragraph */
  .lead {
    font-size: 1.15rem;
    color: #111;
  }

  /* Lists */
  ul {
    margin: 0 0 20px 20px;
    padding: 0;
  }

  li {
    margin-bottom: 8px;
  }

  /* Related links section */
  #related ul {
    list-style: none;
    padding: 0;
  }

  #related li {
    margin-bottom: 6px;
  }

  #related a {
    color: #0066cc;
    text-decoration: none;
  }

  #related a:hover {
    text-decoration: underline;
  }

  /* Optional: subtle horizontal dividers between sections */
  section + section {
    border-top: 1px solid #ddd;
    padding-top: 30px;
  }

  /* Mobile adjustments */
  @media (max-width: 600px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    section { margin: 30px auto; }
  }

