body {
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    max-width: 1024px;
    margin: 0 auto 20px;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.no-image-icon {
    font-size: 48px;
    color: #999;
}

.card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #555;
}

.action-icon:hover {
    background-color: #f0f0f0;
}

.property-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #333;
}

.property-price {
    color: #1e88e5;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.price-details {
    font-size: 11px;
    color: #757575;
    margin-bottom: 5px;
}

.info-row {
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.info-label {
    color: #666;
}