.hus-search-form {
	display: flex;
	flex-direction: column;
	gap: 0.9em;
	width: 100%;
	max-width: 320px;
	margin-bottom: 2em;
	padding: 1.25em;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fafafa;
	box-sizing: border-box;
}

.hus-search-form__row {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
	width: 100%;
	font-size: 0.9em;
}

.hus-search-form__row--type {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1em 1.5em;
}

.hus-search-form__type-option {
	display: flex;
	align-items: center;
	gap: 0.4em;
	font-weight: bold;
	cursor: pointer;
}

.hus-search-form__select,
.hus-search-form input[type="text"] {
	width: 100%;
	padding: 0.5em 0.6em;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.hus-search-form__select:disabled {
	background: #eee;
	color: #999;
	cursor: not-allowed;
}

.hus-search-form__submit {
	width: 100%;
	padding: 0.7em 1em;
	border: none;
	border-radius: 4px;
	background: #d92323;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}

.hus-search-form__submit:hover {
	opacity: 0.85;
}

.hus-search-form__row[hidden] {
	display: none;
}
