body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #78ad23;
  color: #FFFFFF;
  text-align: center;
}


h1 {
  font-size: 24px;
  color: #FFFFFF;
    position: relative;
    padding: 20px 0;
    z-index: 10;
}

#map {
    z-index: 1;
  width: 100%;
  height: 90vh;
  margin: 0 auto;
}

#legenda-mapa {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 9999;
  max-width: 330px;
}

.item-legenda {
  display: flex;
  align-items: left;
  margin-bottom: 8px;
}

.item-legenda:last-child {
  margin-bottom: 0;
}

.item-legenda img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.item-legenda span {
  color: #000;
  text-align: left;

}

#atualizacao-site {
  text-align: center;
  font-size: 10px;
  color: #919191;
  margin-top: 10px;
}

#percentual-brasil {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}

#barra-container {
  width: 100%;
  height: 12px;
  background: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 5px;
}

#barra-progresso {
  height: 100%;
  width: 0%;
  background: #ff8800;
  transition: width 0.8s ease;
}

#texto-percentual {
  color: #78ad23;
  font-size: 12px;
}