.properties-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.property-item {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    background-color: #fff;
    align-items: center;
    border-radius: 0; /* Remove rounded corners */
}

.property-image {
    flex-shrink: 0;
    width: 350px; /* Increase the width of the property image */
    height: 250px; /* Set a fixed height for the property image */
    overflow: hidden;
    margin-right: 20px;
    border-radius: 0; /* Remove rounded corners */
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the entire area */
    border-radius: 0; /* Remove rounded corners */
}

.property-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-content h2 {
    font-size: 24px; /* Adjust the font size for the title */
    margin-bottom: 10px;
    font-weight: bold;
    color: #532773; /* Change title color */
}

.property-description {
    font-size: 14px; /* Adjust the font size for the description */
    color: #666;
    margin-bottom: 10px;
}

.property-meta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push the button to the bottom */
}

.property-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.property-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
    font-size: 16px; /* Increase the font size for the meta information */
    color: #666;
}

.property-meta img {
    margin-right: 5px;
    width: 24px; /* Increase the width of the icons */
    height: 24px; /* Increase the height of the icons */
}

.property-actions {
    display: flex;
    align-items: center;
}

.view-property {
    padding: 10px 20px;
    background-color: #00a651; /* Change the background color of the button */
    color: #fff;
    text-decoration: none;
    text-transform: uppercase; /* Make button text uppercase */
    border-radius: 0; /* Remove rounded corners */
    font-size: 14px;
    margin-left: 15px;
}

.view-property:hover {
    background-color: #007a40; /* Adjust the hover color of the button */
}
.property-actions a {
    background: #00a64f !important;
    font-weight: bold;
}