Help with bigger icons and date from year month day to day month year

Hello People,

Who can help me with change the size of my icons.
i have a garbage calendar. but the icons are small. how can i gett them bigger.
and the date is in wrong order. i need it in Day - Month - Year.

can someone help me and say wat i have to do and where? i’m a beginner.
My installation is Home assistant on a raspberry pi.

You probably need to make new sensors with a template sensor to get the dates the way you want.

perhaps something like this in configuration.yaml:

sensor: # make sure there is only one of this
  - platform: template
    sensors:
      garbage:
        friendly_name: "garbage sensor correct date format"
        value_template: >-
             {% set date = states('sensor.YOUR_GARBAGE_SENSOR') %}

             {% if date == now().date() | string %}
                 today
             {% elif date == (now().date() + timedelta(days=1)) | string %}
                 tomorrow
             {% else %}
                 {{ as_timestamp(date) | timestamp_custom("%d-%m-%Y") }}
             {% endif %}

And for the icon size there is card-mod.

How to make the carbage icons little bit bigger