.property-details {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.property-details h4 {
    margin: 0 0 10px 0;
    color: var(--text-color);
    font-size: 1.1em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.property-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.property-info p {
    margin: 5px 0;
    color: var(--text-color);
}

.property-info strong {
    color: var(--primary-color);
    margin-right: 5px;
} 