body {
    background: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-header {
    background: linear-gradient(135deg, #007cba 0%, #00a8e8 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-image .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.8rem;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.small {
    font-size: 0.8rem;
    color: #6c757d;
}

.favorite-btn.active {
    background: #dc3545;
    color: white;
}

.property-info {
    padding: 20px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007cba;
    margin-bottom: 10px;
}

.property-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.property-location {
    color: #6c757d;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #007cba, #00a8e8);
    border: none;
    border-radius: 10px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}