
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background: #f7f7f7;
  color: #222;
}
.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .container {
    flex-direction: row;
  }
}
#map {
  height: 70vh;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  flex: 1.3;
}
.form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  flex: 1;
}
h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
label {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
}
input, textarea, button, select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #f0f0f0;
}
textarea {
  resize: vertical;
  min-height: 80px;
}
button {
  background: #1d9bf0;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
}
button:hover {
  background: #1a85d6;
}
.location-btn {
  background: #4BB543;
  color: white;
  padding: 10px;
  font-size: 0.9rem;
  border: none;
  border-radius: 12px;
  width: 100%;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.status {
  text-align: center;
  margin-top: 1rem;
  color: green;
}
.popup-btns a {
  display: inline-block;
  background: #eee;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px 5px 0 0;
}
