body {
  margin: 0;
  padding: 0;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.title {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: rgba(252, 224, 68, 0.8);
  padding: 8px 15px;
  border: 2px, solid rgba(0, 0, 0, 0.39);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: rgba(0, 0, 0);
  
}

#default-button {
  position: absolute;
  top: 240px;
  left: 10px;
  z-index: 1001;
  padding: 8px 20px;
  background-color: rgba(252, 224, 68, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.39);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  width: 133px;
}

#default-button:hover {
  background-color: rgb(217, 255, 0);
  color: #000000;
} 

.leaflet-control-zoom a {
  background-color: rgba(252, 224, 68, 0.8);
  
  
  
}

.leaflet-control-zoom a:hover {
  background-color: rgb(217, 255, 0);
  color: #000000;
} 



.leaflet-control-layers {
  background-color: rgba(252, 224, 68, 0.8);
  border: 2px solid rgba(0, 0, 0);
  border-radius: 4px;
}


.leaflet-control-layers label {
  color: #000000;
  font-family: Arial, sans-serif;
}


#info-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 300px;
  max-height: 400px;
  background-color: rgba(252, 224, 68, 0.8);
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(0, 0, 0, 0.39);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  display: block;
}

#info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#info-header h4 {
  margin: 0;
  font-size: 16px;
}

#info-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}









