.lfrm_banner{
	width: 100%;
	max-width: 100%;
	/* padding: 20px 20px; */
	background-color: #F58220;
	border-radius: 10px;
}

.lfrm_page_hdng {
	text-align: center;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	padding: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}


/* Filter Wrapper */

#lfrm_filters_wrapper {
	  /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px; */
		width: 100%;
		max-width: 100%;
}

#lfrm_search_form {
	    display: flex;
			flex-wrap: wrap;
			gap: 10px;
			justify-content: center;
			align-items: center;
			padding: 10px;
}
#lfrm_search_form input,
#lfrm_search_form select {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	width: 160px; 
	max-width: 100%;
}
.lfrm_btn {
	font-weight: bold;
	cursor: pointer;
}

@media (max-width: 768px) {
	#lfrm_search_form input{
		width: 40%;
  }
  #lfrm_search_form select {
		width: 46%; 
	}  
	input#lfrm_search_btn {
    width: 95%;
}
}



/* all listings */
div#lfrm_all_listings_wrapper {
	    display: flex;
			flex-wrap: wrap;
			width: 100%;
			max-width: 100%;
			gap: 15px;
			justify-content: center;
			margin: 15px auto;
}

.lfrm_single_listing {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
}

.lfrm_single_listing:hover {
	transform: scale(1.03);
}

.lfrm_sl_image {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.lfrm_sl_content {
	/* padding: 15px; */
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.lfrm_sl_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lfrm_sl_address,
.lfrm_sl_rent {
	font-size: 16px;
	font-weight: 500;
	padding: 0 10px;
}

.lfrm_sl_address p{
	margin: 5px 0;
}

.lfrm_bed_bath {
	padding: 0 10px;
	margin: 5px 0;
	font-size: 16px;
	color: #666666;
}

.lfrm_sl_buttons {
	display: flex;
	margin-top: auto;
}

.lfrm_sl_details_btn,
.lfrm_sl_apply_btn {
	flex: 1;
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none !important;
}


/* Mobile Responsive CSS */
@media (max-width: 767px) {
    div#lfrm_all_listings_wrapper {
        /* Optional: stack items vertically if needed */
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .lfrm_single_listing {
        width: 95%;
        /* Use full width with a bit of margin */
        margin: 0 auto;
    }

    .lfrm_sl_image {
        height: 150px; /* Slightly reduced height for smaller screens */
    }

    .lfrm_sl_address,
    .lfrm_sl_rent {
        font-size: 14px;
        padding: 0 5px;
    }

    .lfrm_bed_bath {
        font-size: 14px;
        padding: 0 5px;
    }

    .lfrm_sl_details_btn,
    .lfrm_sl_apply_btn {
        padding: 8px 0;
        font-size: 12px;
    }
}


/* div#lfrm_all_listings_wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
	gap: 15px;
	align-content: center;
	justify-content: center;
}
.lfrm_single_listing {
	padding: 0 15px;
	border: 1px solid;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(33.3% - 10px);
	 display: block !important;
}

.lfrm_single_listing a {
    width: 200px;
    display: block;
	text-align: center;
    margin: auto;
    padding: 10px 0px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid;
    color: #000;
	margin-bottom: 10px;
} */

/* Pagination css */
#lfrm_pagination_wrapper {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  #lfrm_pagination_wrapper .lfrm_pgn_item, #lfrm_pagination_wrapper .lfrm_pgn_btn {
	height: 35px;
    width: 35px;
    padding: 2px;
    box-shadow: 0 0 3px #aaa;
    margin: 5px;
  }
  #lfrm_pagination_wrapper .lfrm_pgn_item:hover, #lfrm_pagination_wrapper .lfrm_pgn_btn:hover {
	  background: rgb(11, 116, 215);
	  cursor: pointer;
	  color: #fff
  }
  #lfrm_pagination_wrapper .lfrm_pgn_item.active {
	  background: rgb(11, 116, 215);
	  color: #fff;
  }