body {
    padding: 0;
    margin: 0;
}
html, body, #map {
    height: 100%;
    width: 100%;
}

/*updated About Us Button*/
#info-box .dropbtn {
  background-color: #7d9b7a; /*color brewer 41ab5d; /*original color 4CAF50;*/
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

#info-box .dropdown-content {
  display: none;
  background-color: #f9f9f9;
  width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#info-box .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

#info-box .dropdown-content a:hover {
  background-color: #f1f1f1;
}

#info-box .dropbtn:hover {
  background-color: #3e8e41;
}
#info-box .dropdown:hover .dropdown-content {
  display: block;
}

/*road query button*/
#queryDropdown {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 1000;
}

#queryDropdown label {
    margin-right: 10px;
    font-weight: bold;
}

#regionSelect {
    padding: 5px;
}

/*info box styling*/
#info-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 100vh;
  background-color: #c4d4c0; /*color brewer 66c2a4;   /*original color 2c5f6f;*/
  color: white;
  padding: 30px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1000;
}

#info-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

#info-box h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
}

#info-box p {
  line-height: 1.6;
  margin-bottom: 15px;
}

/*legend styling*/
.legend-section {
  margin-top: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.legend-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: rgba(0, 0, 255, 0.1);
  flex-shrink: 0;
}

.legend-color {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid white;
  flex-shrink: 0;
}

.legend-line {
  width: 30px;
  height: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50% 50% 50% 0;
    background-color: #0078A8;
    margin-right: 10px;
    transform: rotate(-45deg);
    flex-shrink: 0;
    position: relative;
}

.legend-dot::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

/*footer styling*/
#footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #4a5f48; /*color brewer 238b45;    /*original color 1a3d47;*/
  color: white;
  padding: 15px 30px;
  font-size: 12px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  box-sizing: border-box;
}

#footer p {
  margin: 5px 0;
  line-height: 1.4;
}

/*zoom element*/
.leaflet-top.leaflet-left {
    left: 430px !important;
    top: 0.1px !important;
}

/*User Response Button*/
#info-box .response-btn {
  background-color: #7d9b7a;
  color: white;
  padding: 16px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  text-decoration: none;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

#info-box .response-btn:hover {
  background-color: #3e8e41;
}
