.listing-card {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.listing-card:hover {
    transform: scale(1.02);
}
.listing-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.listing-card .card-body {
    padding: 15px;
}
.listing-card .btn-view-detail {
    background-color: red;
    color: white;
    width: 100%;
}
.listing-location {
    color: #666;
    font-size: 0.9rem;
}
.listing-price {
    font-weight: bold;
    color: #333;
}