/* Styl pro celý vyhledávací formulář */

.searchandfilter {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  font-size: 0px;
}

/* Úprava vyhledávacího pole */

.searchandfilter input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Nadpisy kategorií a tagů uvnitř pluginu */

.searchandfilter h4 {
  font-size: 16px;
  margin: 15px 0 10px 0;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Seznamy checkboxů */

.searchandfilter ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.searchandfilter li {
  padding: 5px 0;
  font-size: 14px;
}

/* Stylování tlačítka Search */

.searchandfilter input[type="submit"] {
  background-color: #c4a47c;
  /* Tvá zlatavá barva z obrázku */
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.searchandfilter input[type="submit"]:hover {
  background-color: #b3936b;
}