
/* Style the property page container with two columns */
.property-page {
    display: flex;

    margin:10px 0 0 0;
    align-items: center;
    padding: 0px 0 20px 0;
    align-items: flex-start;
    width:100%;
}

/* Style the property image column */
.property-image {
  flex: 0 0 60%; /* 60% width */
  max-width: 60%; /* 60% maximum width */

}

.property-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}


.property-name {
  max-width: 280px;
}

.property-name a {
  font-weight: 700;
  color:#333540;
  font-size:18px;
  text-decoration:none;
}

.property-name a:hover {
  text-decoration:none;

}

/* Style the property info column */
.property-info {
    flex: 1; /* Takes the remaining space */
    text-align: left;
    margin:0 0 0 20px;
}

.property-info-listing {
    text-align: left;

}

.property_links {
    display:block;
    width:100%;
    font-size:14px;
}

.property-info a {

  color:#0056b3;
  text-decoration: underline;
}

.property-info a:hover {

  text-decoration: none;
}

.property-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.property-additional-info {
  font-size:14px;
}

.property-map {
  width: calc(100vw - 40px);
  position: relative;
  left: 50%;
  margin-left: calc(-50vw + 20px);
}

.property-additional-info h2 {
  padding:10px 0 10px 0;
}

.property-info-name {
  margin:10px 0 0 0!important;
}

.property-info-name {font-size:14px;color:rgb(140, 143, 156);}
.property-price,
.property-developer,
.property-address, .property-city,.property-phone {
    font-size: 16px;
    max-width:280px;
    margin-bottom: 0px;
    color:#000;
}


.property-city {
  font-size:16px;
  color:#000!important;
}

.property-phone {
  font-size:16px;
}

.property-city {
  color:rgb(140, 143, 156);
}

.property_description {
    background-color: #f5f5f5;
    padding: 20px;
    font-size:14px;
    margin-top: 20px; /* Add space between the table and the block */
}

.city_block_h1 h2 {
  margin:20px 0 0 0;
  font-size:20px;
  line-height: 1.2em;
}

.property_plan { background-color: #f2f2f2; padding: 20px; margin-bottom: 10px; border-radius: 5px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.property_plan h3 { color: #333; flex-basis: 100%; margin-bottom: 10px; }
.property_plan-info { margin: 5px 10px; flex-grow: 1; text-align: center; }
.property_plan-info span { font-weight: bold; display: block; }

/* Add styles for the map, phone, and city information as needed */

/* Media Query for responsive design */
@media screen and (max-width: 768px) {
    .property-page {
        flex-direction: column;
        text-align: center;
    }

    .property-image,
    .property-info {
        max-width: 100%;
    }

    .property-info {
        margin-top: 0px;
    }
    .property-name {
      margin:10px 0 0 0;
    }
}


/* Basic styling for the table */
 table {
     width: 100%;
     border-collapse: collapse;
 }
 th, td {
     border: 1px solid #ddd;
     padding: 8px;
     text-align: left;
 }
 th {
     background-color: #f2f2f2;
 }

 /* Make the table responsive */
 @media screen and (max-width: 600px) {
     table, tr, td {
         display: block;
     }
     th {
         display: none;
     }
     .property-info {
         margin:0 0 0 0px;
     }
     .property-image, .property-info {
       flex-basis: 100%; /* Each div takes full width on small screens */
       max-width: 100%;
     }
 }
