.property-card {
    transition: transform 0.2s ease-in-out;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-features {
    font-size: 0.9rem;
}

.badge {
    font-weight: 500;
}

.btn-group .btn {
    padding: 0.5rem 1rem;
}

.property-card img {
    height: 250px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .btn-group {
        flex-wrap: wrap;
    }
    
    .btn-group .btn {
        flex: 1 1 auto;
        margin: 2px;
    }
} 