body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
}

h1 {
  margin-bottom: 30px;
}

.section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.row {
  display: flex;
  gap: 20px;
}

.col {
  flex: 1;
}

textarea {
  width: 100%;
  height: 300px;
  font-family: monospace;
  border-radius: 6px;
  padding: 10px;
}

#map {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  background: #ddd;
}

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
}
