/**
 * Agent Property Filter Widget Styles
 */

.hauf-filter-form {
	width: 100%;
	max-width: 100%;
}

.hauf-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	margin-bottom: 10px;
}

.hauf-select,
.hauf-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background: #fff;
	font-size: 14px;
	color: #666;
	transition: border-color 0.3s ease;
}

.hauf-select:focus,
.hauf-input:focus {
	outline: none;
	border-color: #00aeef;
}

.hauf-select {
	appearance: none;
	background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 35px;
	cursor: pointer;
}

.hauf-input::placeholder {
	color: #999;
	opacity: 1;
}

.hauf-submit {
	width: 100%;
	padding: 12px 20px;
	background-color: #00aeef;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hauf-submit:hover {
	background-color: #0099d6;
}

.hauf-submit:active {
	transform: translateY(1px);
}

/* Responsive */
@media (max-width: 1200px) {
	.hauf-row {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.hauf-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.hauf-row {
		grid-template-columns: 1fr;
	}
}

