.paby-property-search-form {
  max-width: 100%;
}
.paby-property-search-form .search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; /* Adjust width as needed */
  background-color: white;
  border-radius: 45px;
  padding: 5px;
  border: 1px solid #ddd;
  overflow: hidden;
  margin-bottom: 20px;
}

.paby-property-search-form .search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #999; /* Placeholder color */
}

.paby-property-search-form .search-input::placeholder {
  color: #d3d3d3;
}

.paby-property-search-form .filter-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 20px;
}

.paby-property-search-form .filter-button:hover,
.paby-property-search-form .filter-button:active {
  background-color: transparent;
}

.paby-property-search-form .icon-filter::before {
  content: "\f1de"; /* Example filter icon - font-awesome code */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #004785;
}

.paby-property-search-form .search-button {
  background-color: #004785; /* Button color */
  color: white;
  border: none;
  border-radius: 35px;
  padding: 20px 45px;
  cursor: pointer;
  font-size: 16px;
}

.paby-property-search-form .search-button:hover {
  background-color: #003a66; /* Hover color */
}

button#toggle-filters {
  outline: none;
}

.paby-property-search-form .filter-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(200px, 1fr)
  ); /* Adjusts column size based on the container */
  gap: 15px; /* Space between grid items */
}

.paby-property-search-form .form-group {
  margin-bottom: 15px;
}

.paby-property-search-form .form-group label {
  display: block;
  margin: 5px 0px;
}

.paby-property-search-form .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0paby-property-search-form 0.3s;
}

.paby-property-search-form .form-group select:focus {
  border-color: #80bdff;
  outline: none;
}

.paby-property-search-form .filter-options #toggle-filters {
  display: block; /* Show button to toggle filters */
  margin-bottom: 10px;
}

.paby-property-search-form label {
  color: #fff;
}

@media (max-width: 768px) {
  .paby-property-search-form .filter-button {
    display: none;
  }
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
  /* background-color: #004785 !important;
  color:#fff !important */
}

button#toggle-filters {
  background-color: unset !important
}

/* Filterbar container style */
.pbay-filterbar-container {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Filter button style */
.pbay-filterbar-container .filter-button {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  background-color: #fff;
  border: 1px solid #555;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pbay-filterbar-container .filter-button:hover {
  background-color: #f0f0f0;
}

.pbay-filterbar-container .filter-button i {
  margin-right: 8px;
}

/* Items found text style */
.pbay-filterbar-container .items-found {
  color: #555;
  font-weight: 500;
}
