.property {
	display: flex;
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	
	/* max-width: 600px; */
	/* margin: 20px auto; */
}
.property-image {
	width: 300px;
	height: 325px;
	object-fit: cover;
}
.property-content {
	padding: 15px;
	flex-grow: 1;
}
.property-title {
	font-weight: bold;
	margin-bottom: 5px;
}
.property-price {
	font-size: 1.2em;
	color: #4CAF50;
	margin-bottom: 10px;
}
.property-details {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}
.property-details img {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.property-details span {
  vertical-align: middle;
}
.sponsored {
  text-align: right;
  font-style: italic;
  color: gray;
}
.added{
  font-size: small;
  color: gray;
}
/* Media Query for smaller screens */
@media (max-width: 480px) { /* Adjust breakpoint as needed */
	.property {
		flex-direction: column; /* Stack image and content vertically */
	}
	.property-image {
		width: 100%; /* Image takes full width */
		height: 100%; /* Maintain aspect ratio */
	}
}

.property-info-container { /* Unique container class */
	background-color: white;
	/* display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 600px;
	margin: 0 auto; */
}
.property-info-card { /* Unique card class */
   
	padding: 20px;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	border: 1px solid #eee;
}
.property-info-title { /* Unique title class */
	font-weight: bold;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.property-info-title img {
	width: 24px;
	height: 24px;
}
.property-input-group { /* Unique input group class */
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px;
}
.property-input-group input {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.property-button { /* Unique button class */
	background-color: #f05f5f;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: fit-content;
}
.property-table-container { /* Unique table container class */
	overflow-x: auto;
}
.property-table { /* Unique table class */
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}
.property-table th, .property-table td { /* Unique table cell classes */
	padding: 8px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}
.property-table th {
	font-weight: bold;
}
@media (max-width: 400px) {
	.property-input-group {
		flex-direction: column;
	}
}

/* search tabs */
.property-search-navbar {
	/* background-color: lightgray; Light gray background */
	padding: 10px;
	/* position: fixed;  */
	/* Stick to the top */
	/* top: 0; */
	/* left: 0; */
	width: 100%;
	z-index: 100; /* Ensure it's above other content */
	display: flex;
	align-items: center; /* Vertically center content */
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
/* .property-search-container {
	display: flex;
   	gap: 5px; 
	max-width: 900px;
	width: 95%;
} */
.property-search-container {
    display: flex;
    align-items: center;   /* Center vertically */
    justify-content: center; /* Center horizontally */
    gap: 5px; /* Spacing between elements */
    max-width: 900px;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the div */
}

/* Hide the search container on screens smaller than 600px */
@media (max-width: 900px) {
    .property-search-container {
        display: none;
    }
}

.property-search-input {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	flex-grow: 1; /* Allow input to take up available space */
	box-sizing: border-box; /* Include padding in width calculation */
}
.property-search-select {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	appearance: none; /* Remove default select styling */
	background-color: white;
	padding-right: 25px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='currentColor' 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 8px center;
	background-size: 1em;
}

.property-search-button {
	background-color: #f05f5f; /* Reddish button */
	color: white;
	padding: 8px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
@media (max-width: 600px){
	.property-search-container{
		flex-wrap: wrap;
	}
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex-shrink: 0;
    width: 100%;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}