body { 
  margin: 0; 
  font-family: sans-serif;
}

#map { 
  height: 300px; 
  width: 100%; 
}

#locationForm {
  padding: 10px;
}

#locationForm label, 
#locationForm input, 
#locationForm textarea {
  display: block; 
  width: 100%; 
  box-sizing: border-box; 
  margin-bottom: 10px; 
}

#locationForm textarea {
  resize: vertical; 
}

.buttons {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 10px; 
  padding: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f38e24; /* Updated button color */
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%; 
  box-sizing: border-box;
}

.button:hover {
  background-color: #d37a1e; /* Updated hover color */
}

h1, h2 {
  text-align: center; 
}

p {
  font-size: 16px;
  line-height: 1.5;
}

.back-button { 
  display: block; 
  margin: 20px auto; 
  padding: 10px 20px;
  background-color: #f38e24; /* Updated button color */
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 80%; 
  box-sizing: border-box;
  text-align: center; 
}

.back-button:hover {
  background-color: #d37a1e; /* Updated hover color */
}

.header-image {
  display: block;
  max-width: 100%; 
  height: auto; 
  margin-left: auto;
  margin-right: auto; 
  margin-bottom: 20px; 
}

.pub-count {
  text-align: center;
  font-size: 18px; 
  margin-bottom: 20px; 
}