How can I add dividers to a Monster Card?

I have this card. How can I add dividers?

card:
  show_header_toggle: false
  show_icon: false
  title: Notifications
filter:
  include:
    - entity_id: input_boolean.autolock
    - entity_id: input_boolean.auto_fan
    - entity_id: input_boolean.notification_*
    - entity_id: input_boolean.lock_notifications
    - entity_id: input_boolean.dooraccess_notifications
type: 'custom:monster-card'

I’ve tried using type: divider to add two dividers as follows, but it causes an unholy mess. Any suggestions?

card:
  show_header_toggle: false
  show_icon: false
  title: Notifications
filter:
  include:
    - entity_id: input_boolean.autolock
    - entity_id: input_boolean.auto_fan
    - type: divider
    - entity_id: input_boolean.notification_*
    - type: divider
    - entity_id: input_boolean.lock_notifications
    - entity_id: input_boolean.dooraccess_notifications
type: 'custom:monster-card'