/* Basic styling for the form */
form {
  font-family: Arial, sans-serif;
  margin: 20px;
}

/* Style the labels */
label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Style the input fields */
input[type="text"] {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Style the button */
button {
  background-color: #4caf50; /* Green */
  border: none;
  color: white;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #45a049; /* Darker green on hover */
}

/* Style the autocomplete suggestions dropdown */
.ui-autocomplete {
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ddd;
  border-radius: 4px;
}
