/* Layout geral */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f6f8;
  color: #333;
}

h1 {
  text-align: center;
  margin: 20px 0;
  color: #0077cc;
}

/* Mapa */
#map {
  width: 100%;
  height: 400px;
  border: 2px solid #0077cc;
  border-radius: 6px;
}

/* Controles */
#controls {
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

fieldset {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background: #fff;
}

legend {
  font-weight: bold;
  color: #0077cc;
}

/* Botões */
button {
  background: #0077cc;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  margin: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #005fa3;
}

button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Informações */
#distance {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

#banner {
  margin-top: 10px;
  padding: 8px;
  background: #eaf4ff;
  border: 1px solid #0077cc;
  border-radius: 4px;
  text-align: center;
}

/* Street View */
#streetview {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  border: 2px solid #0077cc;
  border-radius: 6px;
}

/* Link do vídeo */
#linkVideo {
  margin: 20px;
  text-align: center;
  font-size: 16px;
}

#linkVideo a {
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}

#linkVideo a:hover {
  text-decoration: underline;
}

/* Instruções */
#menuCamuflado {
  cursor: pointer;
  font-weight: bold;
  margin: 20px;
  color: #0077cc;
}

#instrucoes {
  margin: 20px;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.hidden {
  display: none;
}
