/* Make all form fields full width and stacked */
#quoteForm {
  display: flex;
  flex-direction: column;
  gap: 10px; /* spacing between fields */
  max-width: 400px; /* optional: limit form width */
}

#quoteForm label {
  font-weight: bold;
}

#quoteForm label span{
  font-weight: normal;
  font-size: 12px;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea,
#quoteForm button {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 14px;
}

#quoteForm button {
  background-color: #0073aa;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

#quoteForm button:hover {
  background-color: #005f8d;
}

/* Optional: adjust message display */
#quoteMessage {
  margin-top: 10px;
  font-weight: bold;
}
