<View style="padding: 20px; font-family: Arial, sans-serif; background: #f0f2f5;">
  <Header value="Conversation Evaluation" size="3" style="color: #333; margin-bottom: 20px;" />

  <View style="padding: 20px; border: 1px solid #ddd; border-radius: 8px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.08);">

    <!-- Student 1 -->
    <View style="margin-bottom: 15px; background: #e3f2fd; padding: 10px; border-radius: 5px; border-left: 4px solid #1e88e5;">
      <Header value="Student 1" size="6" style="margin-top: 0; margin-bottom: 5px; color: #1e88e5;"/>
      <Text name="s1" value="$student1" />
    </View>

    <!-- Teacher 1 (Requires Labeling) -->
    <View style="display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding: 10px; background: #f1f8e9; border-radius: 5px; border-left: 4px solid #43a047;">
      <View style="flex: 1; padding-right: 20px;">
        <Header value="Teacher 1" size="6" style="margin-top: 0; margin-bottom: 5px; color: #43a047;"/>
        <Text name="t1" value="$teacher1" />
      </View>
      <View style="flex-shrink: 0;">
        <Choices name="eval_t1" toName="t1" choice="single" showInline="true">
          <Choice value="Accept" background="#4CAF50" />
          <Choice value="Reject" background="#F44336" />
        </Choices>
      </View>
    </View>

    <!-- Student 2 -->
    <View style="margin-bottom: 15px; background: #e3f2fd; padding: 10px; border-radius: 5px; border-left: 4px solid #1e88e5;">
      <Header value="Student 2" size="6" style="margin-top: 0; margin-bottom: 5px; color: #1e88e5;"/>
      <Text name="s2" value="$student2" />
    </View>

    <!-- Teacher 2 (Requires Labeling) -->
    <View style="display: flex; align-items: center; justify-content: space-between; padding: 10px; background: #f1f8e9; border-radius: 5px; border-left: 4px solid #43a047;">
      <View style="flex: 1; padding-right: 20px;">
        <Header value="Teacher 2" size="6" style="margin-top: 0; margin-bottom: 5px; color: #43a047;"/>
        <Text name="t2" value="$teacher2" />
      </View>
      <View style="flex-shrink: 0;">
        <Choices name="eval_t2" toName="t2" choice="single" showInline="true">
          <Choice value="Accept" background="#4CAF50" />
          <Choice value="Reject" background="#F44336" />
        </Choices>
      </View>
    </View>

  </View>
</View>
