.mls-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 600px;
  }
  #mls-map {
    width: 65%;
    height: 100%;
  }
  #mls-list {
    width: 35%;
    height: 100%;
    overflow-y: auto;
    padding: 10px;
    background: #fafafa;
  }
  #mls-filters {
    z-index: 100;
  }
  .listing-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  .listing-card img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #ddd;
  }
  .listing-card div {
    padding: 5px 8px;
  }
  .listing-card strong {
    font-size: 16px;
  }
  #mls-list {
    padding: 10px;
    background: #f9f9f9;
    overflow-y: scroll;
}
.listing-card {
    display: flex;
    flex-direction: column;
    background: white;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.listing-card:hover {
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.listing-card img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.card-body {
    padding: 8px;
}
.price {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
}
.details {
    font-size: 0.9em;
    color: #666;
}
.addr {
    font-size: 0.85em;
    color: #888;
}
