.search-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.search-input-wrapper {
	position: relative;
	/* display: flex;
	align-items: center;
	border: 1px solid #ddd;
	padding: 6px 10px;
	border-radius: 8px;
	background: #fff;
	width: 100%; */
}

.search-input-wrapper input {
	width: 100%;
	padding-right: 40px;
	border: 1px solid #ccc;
	border-radius: 8px;
	padding: 8px 12px;
	/* flex: 1; */
	/* border: none; */
	/* outline: none; */
	font-size: 14px;
	box-sizing: border-box;
	/* background: transparent; */
}

.search-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	font-size: 18px;
	color: #333;
	cursor: pointer;
	/* padding-left: 0px; */
}

.filters {
	display: flex;
	gap: 10px;
}

.filters select {
	width: 100%;
	padding: 6px 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 14px;
	cursor: pointer;
	background: #fff;
}

.filters select:hover {
	background: #f8f9fa;
}