.search-x-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.search-x-field {
  flex: 1 1 100%;
  min-width: 100%;
}

.search-x-button-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 4px;
}

/* Make the button full width */
.search-x-button-wrap button {
  width: 100%;
}

/* Responsive adjustments */
@media (min-width: 600px) {
  .search-x-field {
    flex: 1 1 200px;
    min-width: 150px;
  }

  .search-x-button-wrap {
    justify-content: flex-start;
    width: auto;
  }

  .search-x-button-wrap button {
    width: auto;
  }
}
