.search-section .search-content {
  border: 1px solid #00d8ba47;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.search-section .search-content .city-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-section .search-content .city-field label {
  color: #707070;
  font-weight: 500;
  font-size: 16px;
}

.search-section .search-content .city-field select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 10px;
  padding-right: 40px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 fill%3D%22%23707070%22 viewBox%3D%220 0 24 24%22%3E%3Cpath d%3D%22M7 10l5 5 5-5z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  font-size: 16px;
  color: #707070;
}

.search-section .search-content .city-field select:hover {
  border-color: #00d8ba;
}

.search-section .search-content .city-field select:focus {
  outline: none;
  border-color: #00d8ba;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 fill%3D%22%2300d8ba%22 viewBox%3D%220 0 24 24%22%3E%3Cpath d%3D%22M7 10l5 5 5-5z%22/%3E%3C/svg%3E");
}

.search-section .search-content .city-field input {
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 16px;
  color: #707070;
}

.search-section .search-content .city-field input:focus {
  outline: none;
  border-color: #00d8ba;
}

.search-section .search-content .city-field textarea {
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 16px;
  color: #707070;
  resize: none;
}

.search-section .search-content .city-field textarea:focus {
  outline: none;
  border-color: #00d8ba;
}

.search-section .search-content button {
  background-color: var(--green-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
}

.step {
  display: none;
}

.step.active {
  display: block !important;
}

.submit-btn {
  margin-bottom: 10px;
}

/* step 2 */
.property-grid {
  margin-bottom: 2rem;
}

.header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  margin-bottom: 1rem;
  color: var(--green-color);
  font-weight: 500;
}

.header-row .option-header {
  text-align: center;
}

.property-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.property-type {
  color: #333;
}

.checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid var(--green-color);
  border-radius: 4px;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: var(--green-color);
}

.step-title2-header {
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
