<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.property-search-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.search-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.range-inputs {
    display: flex;
    gap: 10px;
}

.range-inputs input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.property-card {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.property-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-content {
    padding: 15px;
}

.property-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.property-title a {
    text-decoration: none;
    color: #333;
}

.property-price {
    font-size: 1.2em;
    font-weight: bold;
    color: #2271b1;
    margin-bottom: 10px;
}

.property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #666;
}

.property-address {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.property-list-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #e1e5e9;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 4px;
}

.property-thumbnail {
    flex-shrink: 0;
    width: 120px;
}

.property-thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.property-info {
    flex: 1;
}

.property-table {
    margin: 20px 0;
}

.property-pagination {
    text-align: center;
    margin: 20px 0;
}

.no-results {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 4px;
    color: #666;
}

.badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.badge.taxonomy {
    background: #e3f2fd;
    color: #1976d2;
}

.badge.meta {
    background: #f3e5f5;
    color: #7b1fa2;
}

@media (max-width: 768px) {
    .search-fields {
        grid-template-columns: 1fr;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .property-list-item {
        flex-direction: column;
    }
    
    .property-thumbnail {
        width: 100%;
    }
}</pre></body></html>