/* ===== Форма поиска ===== */
.search-form-container {
  margin: 20px 0;
  padding: 15px;
  background: #f0f0f0;
  border-radius: 5px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form label {
  font-weight: bold;
  white-space: nowrap;
  /* чтобы не переносилось */
}

.search-form input[type="text"] {
  padding: 5px 8px;
  width: 150px;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 34px;
  /* задаём одинаковую высоту с кнопками */
}

.search-form button,
.search-form .btn-reset {
  padding: 5px 15px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  height: 34px;
  width: auto;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  /* для ссылки */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-form button {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.search-form button:hover {
  background: #0069d9;
}

.search-form .btn-reset {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}

.search-form .btn-reset:hover {
  background: #c82333;
}

/* ===== Сообщения под формой ===== */
.search-message {
  margin-top: 10px;
  padding: 5px 0;
}

.search-message.error {
  color: #d9534f;
  font-weight: bold;
}

.search-message.info {
  color: #333;
}

.search-message .icon-warn {
  color: #d9534f;
  font-weight: bold;
}