.fresh-makelaars-search-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
}

.fresh-makelaars-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fresh-makelaars-search-form .search-form-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.fresh-makelaars-search-form .search-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fresh-makelaars-search-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.fresh-makelaars-search-form .required {
  color: #c00;
}

.fresh-makelaars-search-form input[type="text"],
.fresh-makelaars-search-form input[type="email"],
.fresh-makelaars-search-form input[type="tel"],
.fresh-makelaars-search-form select,
.fresh-makelaars-search-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background: #fff;
}

.fresh-makelaars-search-form textarea {
  resize: vertical;
  min-height: 100px;
}

.fresh-makelaars-search-form .search-form-submit {
  align-self: flex-start;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: var(--fm2-blue, #1a5e8a);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.fresh-makelaars-search-form .search-form-submit:hover {
  opacity: 0.9;
}

.fresh-makelaars-search-form .search-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fresh-makelaars-search-form .search-form-message {
  padding: 12px;
  border-radius: 4px;
  font-size: 0.95rem;
}

.fresh-makelaars-search-form .search-form-message.success {
  background: #e6f4ea;
  color: #1e7e34;
  border: 1px solid #c3e6cb;
}

.fresh-makelaars-search-form .search-form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
