.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px;
}

.search-bar {
	display: flex;
	align-items: center;
	padding: 10px;
	background-color: #f9f9f9;
	border-radius: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}

.propertyoptions {
	display: flex;
	width: 18%;
}

.dropdown {
	padding: 8px 10px;
	border: none;
	border-radius: 30px;
	margin-right: 0;
	font-size: 16px;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.divider {
	height: 30px;
	width: 3px;
	background-color: #ccc;
	margin: 0 5px;
}

.propertysearch-input {
	padding: 8px 12px;
	border: none !important;
	box-shadow: none !important;
	background-color: transparent !important;
	border-radius: 30px;
	flex-grow: 1;
	font-size: 14px;
}

.propertysearch-button {
	padding: 5px 10px;
	border: none;
	background-color: #000;
	color: white;
	font-size: 14px;
	border-radius: 30px;
	cursor: pointer;
	width: 230px;
	margin-bottom: 0;
	margin-right: 0;
	font-weight: 600;
}

.propertysearch-button:hover {
	background-color: #ffe512;
	color: #000;
}

.more-filters-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	padding: 8px 12px;
	margin-left: 8px;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

.more-filters-btn:hover {
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 4px;
}

.icon {
	width: 16px;
	height: 16px;
}

.additional-filters {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.additional-filters.show {
	max-height: 500px;
	opacity: 1;
	margin-top: 16px;
	margin-bottom: 24px;
}

.filter-item {
	position: relative;
}

.filter-select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #e2e8f0;
	border-radius: 99px;
	background-color: white;
	font-size: 14px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: auto;
}

.filter-select:focus {
	outline: none;
	border-color: #000;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.search-bar {
		flex-direction: column;
	}

	.dropdown,
	.propertysearch-input,
	.propertysearch-button {
		width: 100% !important;
		border-bottom: 1px solid #dedede !important;
		font-size: 14px !important;
	}

	.dropdown {
		border-radius: 0px;
	}

	.divider {
		display: none;
	}

	.propertysearch-button {
		width: 150px;
	}

	.propertyoptions {
		width: 100% !important;
		flex-direction: row;
	}

	.propertysearch-input {
		margin-bottom: 1rem !important;
		border-bottom: 1px solid #dedede !important;
	}

	.additional-filters {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.additional-filters {
		grid-template-columns: repeat(2, 1fr);
	}
}