/* Estilo básico do corpo */
body {
  font-family: 'Arial', sans-serif;
  background-color: #222222;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  text-align: center;
  color: #f0f0f0;
  background-color: #333;
  padding: 20px 0;
  border-radius: 8px;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

header p {
  font-size: 1.1rem;
  color: #bbb;
}

/* Estilo da caixa de busca */
#search-container {
  text-align: center;
  margin: 20px 0;
}

#search-container form {
  display: flex;
  justify-content: center;
  align-items: center;
}

#search-container input[type="text"] {
  padding: 12px;
  font-size: 18px;
  width: 280px;
  margin-right: 12px;
  border: 2px solid #444;
  border-radius: 8px;
  background-color: #333;
  color: #f0f0f0;
  transition: all 0.3s ease;
}

#search-container input[type="text"]:focus {
  border-color: #4CAF50;
  outline: none;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.8);
}

#search-container button {
  padding: 12px 20px;
  font-size: 18px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#search-container button:hover {
  background-color: #45a049;
}

/* Formatação do mapa */
#map {
  height: 600px;
  width: 90%;
  margin: 20px auto;
  border-radius: 8px;
  border: 2px solid #444;
}

/* Container do mapa */
#map-container {
  margin: 20px;
}

/* Responsividade */
@media (max-width: 800px) {
  #map {
    height: 300px;
    width: 100%;
  }
}

/* Estilos para imagens no popup */
.leaflet-popup-content img {
  border-radius: 8px;
  margin-top: 10px;
  max-width: 100%;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 15px;
  background-color: #333;
  color: #bbb;
  margin-top: 30px;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
