.list-view-container {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.listing-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    background-color: #f9f9f9
}

.listing-item:last-child {
    border-bottom: none;
}

.listing-item:hover {
    background-color: #f0f0f0;
}

.listing-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.listing-title h4 {
    margin-top: 0;
    color: #333;
    font-size: 20px;
}

.listing-meta {
    margin: 15px 0;
}

.listing-meta p {
    margin-bottom: 8px;
    color: #555;
}

.listing-meta i {
    margin-right: 8px;
    color: #666;
}

.no-listings {
    padding: 20px;
    text-align: center;
    color: #666;
}

.listing-actions {
    margin-top: 15px;
}

@media (max-width: 767px) {
    .listing-item .row > div {
        width: 100%;
    }
    
    .listing-image {
        margin-bottom: 15px;
    }
}