body{
  background-color: #f5f5f5;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  /*font-family: 'Courier New', Courier, monospace;*/
  /*font-family: Arial, Helvetica, sans-serif;*/
  /*background-color: #eff5fd;*/
  font-size: 0.875em;  
  width:100%;
  padding-left: 0px;
  margin: 0 auto;
  margin-top: 0%;
  padding-top: 0%;
  max-width: 480px;
}

/* * * * * *  S E A R C H    B A R      */
.searchbar{  
  background-color: lightsteelblue;
  width:100%;
  height:46px;  
}
.searchbar input[type=text] {
  float: left;
  padding: 7px;
  width: 50%;
  margin-top: 8px;
  margin-left: 10px;
  border: 1px solid lightgray;
  font-size: 0.875em;  
}
.searchbar p{
  float: right;  
  font-size: 0.875em; 
  margin-top: 14px;
  
  margin-right: 10px; 
}
/* * * * * *   S T A T U S   B A R      */
.statusbar{
  display: flex; 
  height:35px;
  margin: 0px;
}
.statusbar div{  
  margin: 0px;
  background-color: #eff4fd;
  padding-left: 10px; 
  padding-top: 4px;  
  height: 100%;
  width: 100%;
  text-align: left;
  border: 1px solid lightgray;  
}
.statusbar div p{
  text-align: center;
  margin:0;
  padding-top:0px;
  font-size: 0.775em;  
  
}
/*     M E N U    B A R      */
.menubar{ 
  display: flex; 
  height:25px; 
  margin: 0px;
  margin-bottom: 7px;
}
.menubar div{  
    margin: 0px;        
    background-color: #f9fafb;
    padding-left: 10px; 
    font-size: 0.875em;
    height: 100%;
    width: 100%;
    padding-top: 8px;
    text-align: center;    
    border: 1px solid lightgray;  
  }
  .menubar img{            
      vertical-align: text-bottom;
    }  

/*     P A G E    F O O T E R      */
  .ftr{
    position: fixed;
    left: 0;
    bottom: -4px;
    width: 100%;
    background-color: white;
    display: flex; 
    height:36px;
    margin: 0px;
  }  
  .ftr div{  
    margin: 0px;
    background-color: white;
    height: 100%;
    width: 100%;
    text-align: center;
    border: 1px solid lightgray;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
  }

/*     C O N T E N T     */
.content{
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.content:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* .content div{ */
  /*  border: 1px solid black; */
/* } */
  
.blank {
  grid-area: tom;  
  background-color: #eff5fd;
  width: 100%;
  height: 100%;   
}



.top_img {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Property Info Section - Clean Modern Design */
.property-info {
    padding: 16px;
}

.property-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-transform: capitalize;
    line-height: 1.3;
}

.property-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: capitalize;
}

.property-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.property-details-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.property-details-row span {
    white-space: nowrap;
}

.property-secondary-info {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f0f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 6px;
    font-size: 12px;
    color: #333;
    text-transform: capitalize;
}