.supplier-search-bar {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    align-items: center;
    max-width: 600px;
    margin: 20px auto;
}

.supplier-search-bar input,
.supplier-search-bar select {
    border: none;
    padding: 8px 12px;
    border-radius: 30px;
    outline: none;
    background: #f8f8f8;
}

.supplier-search-bar button {
    border: none;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.supplier-search-bar button i {
    font-size: 16px;
}




/* 
======================================
Basic horizontal Yelp-like styling 
======================================
*/

.yelpstyle-searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px;
  box-sizing: border-box;
}

.yelpstyle-search-inputs {
  display: flex;
  gap: 8px;
  flex: 1 1 auto;
  align-items: center;
}

.yelpstyle-input {
  min-width: 0;
  flex: 1 1 auto;
  height: 44px;
  border-radius: 6px;
  padding: 6px 10px;
  border: 1px solid #d8d8d8;
  box-sizing: border-box;
  background: #fff;
}

/* Make location field narrower */
.yelpstyle-location {
  flex: 0 0 240px;
  max-width: 240px;
}

/* Buttons */
.yelpstyle-btn {
  height: 40px;
  border-radius: 6px;
  padding: 0 14px;
  border: none;
  cursor: pointer;
  background: #d32323; /* yelp-like accent — change as needed */
  color: white;
  font-weight: 600;
}

.yelpstyle-clear {
  background: transparent;
  color: #333;
  border: 1px solid #e0e0e0;
  width: 40px;
  padding: 0;
}

/* Responsive — stack on narrow screens */
@media (max-width: 720px) {
  .yelpstyle-searchbar {
    flex-direction: column;
    align-items: stretch;
  }
  .yelpstyle-location {
    flex: 1 1 auto;
    max-width: none;
  }
  .yelpstyle-btn {
    width: 100%;
  }
}
