#map-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    box-sizing: border-box;
}

#map {
    height: 500px;
    flex: 1;
}

#property-info {
    width: 50%;
    max-height: 500px;
    overflow-y: none;
    padding-left: 15px;
    box-sizing: border-box;
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
}

.property-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    /* overflow-y: hidden; */
    -webkit-box-shadow: -1px -1px 24px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px -1px 24px -6px rgba(0,0,0,0.75);
    box-shadow: -1px -1px 24px -6px rgba(0,0,0,0.75);
border-radius: 20px;
/* padding: 1vw; */
align-items: center


}

.property-item a {
    text-decoration: none;
    color: #000;
}


.property-image {
    flex-basis: 20%;
    /* max-width: 20%; */
    /* height: auto; */
    margin-right: 10px;
    margin-right: 1vw;
    max-width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}


.property-details h4 { /* Title */
    margin: 0;
    padding: 0;
    font-size: 1.2em;
}

.property-details .author { /* Author */
    font-size: 1em;
    margin: 5px 0;
}

.property-details .info-line { /* Area, Beds, and Bathrooms */
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    margin: 5px 0;
}

.property-details .bottom-line { /* City and Price */
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9em;
}



.view-on-map-button {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}


.property-item {
    width: 100%;
    float: left;
    margin-right: 5%;
    /* Other styling as needed */
}

.property-item img {
    object-fit: cover;
    /* Other styling as needed */
}

.property-item-image {
    max-width: 100%;
    height: 150px;
}

/* Clear fix for rows */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.custom-marker {
    position: relative;
    text-align: center;
	clip-path: polygon(0% 0%, 100% 0%, 100% 47.07%, 50.16% 100%, 0% 47.38%) !important;
}

.marker-image {
    width: 100px;
    height: auto;
    border-radius: 50%; /* Circular image */
	clip-path: polygon(0% 0%, 100% 0%, 100% 47.07%, 50.16% 100%, 0% 47.38%) !important;
}

.marker-info {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.custom-marker:after { /* Pointer at the bottom */
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
    transform: translateX(-50%);
}


#searched-properties-container {
    display: none;
    flex-wrap: wrap;
    justify-content: space-around;
}

#searched-properties-container.show-results {
    display: flex;
}

.property-item {
    /* Style for each property item */
    /* Adjust as needed */
}

#see-more-results-btn {
    cursor: pointer;
    margin-top: 10px;
}