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

#controls {
  position: relative;
  padding: 10px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

#title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: bold;
  color: #00274d;
  text-align: center;
  pointer-events: none;
}

#filters label {
  margin-right: 6px;
}

#filters select {
  margin-right: 12px;
}

#map {
  height: calc(100vh - 50px); /* Leave space for the controls */
  width: 100%;
}

.county-label {
  font-size: 10px;
  color: #00274d;
  font-weight: normal;
  text-shadow: 1px 1px 2px white;
  pointer-events: none;
  text-align: center;
}

.leaflet-tooltip.county-label {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.info.legend {
  background: white;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.info.legend h4 {
  margin: 0 0 6px;
  font-weight: bold;
}

.legend-box {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.legend-color {
  width: 20px;
  height: 12px;
  margin-right: 6px;
  background-color: #ccc;
  border: 1px solid #999;
}