Button Card mit drittem Inhalt

Und wie mache ich ein weiteres Custom Field dazu? Würde gern noch rechts daneben das nächste Event (also Einschaltung oder Ausschaltung) einfügen? Und kann man die erste Zeile einen Höher setzen, dass später alles Mittig ist?

type: custom:button-card
entity: switch.zitronenbaum_pflanzenlampe
color_type: label-card
name: Zitronenbaum Pflanzenlampe
show_icon: false
show_label: true
tap_action:
  action: more-info
  entity: sensor.zitronenbaum_pflanzenlampe_leistung
double_tap_action:
  action: more-info
  entity: sensor.zitronenbaum_pflanzenlampe_energie
hold_action:
  action: toggle
label: |
  [[[
  var pow = states['sensor.zitronenbaum_pflanzenlampe_leistung'].state;
  if (pow != 0.001)
  return 'Leistung: ' + (pow ? pow : '0') + ' W';
    else
    return "Offline";
  ]]]
state:
  - value: "on"
    color: yellow
  - operator: default
    color: rgb(255, 204, 229)
styles:
  card:
    - height: 90px
  custom_fields:
    blahblah:
      - position: absolute
      - left: 34%
      - bottom: 5px
      - color: red
custom_fields:
  blahblah: |
    [[[ 
      return "Temperatur" + " "+states['sensor.temperatur_buro_keller_temperature'].state +" °C"
    ]]]

Screenshot 2024-11-23 145721