.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.radio-container {
  display: flex;
  flex-direction: column;
}

label {
  margin-right: 10px;
  font-size: 16px;
}

input[type="text"], input[type="number"], input[type="date"], input[type="time"],textarea {
  width: 45%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    margin: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007aff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #005bb5;
}

#result {
  margin-top: 20px;
  font-size: 18px;
}

#map {
  margin-top: 20px;
  height: 300px;
  width: 100%;
}