Card Mod help on tile card

Some Help i could use if possible…
sofar i did build this piece of code to enable - disable scripts
and use actions on it…

type: vertical-stack
cards:
- type: horizontal-stack
    cards:
      - type: tile
        entity: automation.lamellen_open
        hide_state: false
        vertical: false
        show_entity_picture: true
        tap_action:
          action: perform-action
          perform_action: automation.trigger
          target:
            entity_id: automation.lamellen_open
          data:
            skip_condition: true
        icon: mdi:script-outline
        name: "Open "
        icon_tap_action:
          action: perform-action
          perform_action: automation.toggle
          target:
            entity_id: automation.lamellen_open
        features_position: bottom
        card_mod:
          style: |
            ha-state-icon {  color: {{'yellow' if
            is_state('automation.lamellen_open', 'on') else  'red'}}; 
            margin-top: -15px;    
            } 
            ha-card {  
            border: none !important;
            --tile-color: transparent !important;
            height: 40px !important;
            }
      - type: tile
        entity: automation.lamellen_dicht
        hide_state: false
        vertical: false
        show_entity_picture: true
        tap_action:
          action: perform-action
          perform_action: automation.trigger
          target:
            entity_id: automation.lamellen_dicht
          data:
            skip_condition: true
        icon: mdi:script-outline
        icon_tap_action:
          action: perform-action
          perform_action: automation.toggle
          target:
            entity_id: automation.lamellen_dicht
        name: Dicht
        features_position: bottom
        card_mod:
          style: |
            ha-state-icon {
            color: {{'yellow' if is_state('automation.lamellen_dicht', 'on')
            else 'red'}};
            margin-top: -15px;
            }
            ha-card {
            border: none !important;
            --tile-color: transparent !important;
            height: 40px !important;
             }
      - type: tile
        entity: automation.lamellen_46
        hide_state: false
        vertical: false
        show_entity_picture: true
        tap_action:
          action: perform-action
          perform_action: automation.trigger
          target:
            entity_id: automation.lamellen_46
          data:
            skip_condition: true
        icon: mdi:script-outline
        name: 46%
        icon_tap_action:
          action: perform-action
          perform_action: automation.toggle
          target:
            entity_id: automation.lamellen_46
        features_position: bottom
        card_mod:
          style: |
            ha-state-icon {
            color: {{'yellow' if is_state('automation.lamellen_46', 'on') else
            'red'}};
            margin-top: -15px;
            }
            ha-card {
            border: none !important;
            --tile-color: transparent !important;
            height: 40px !important;        
            }

results:
1
Now due the small height i use…
ive managed to get up higher the icons…
but im failing to raise the content …
and to get the content closer by the icon to the left…
is this fixable?
or any other guru has an other solution to add this all in just on card?
any suggestions are welcome…
thanks in advance
greetz T…

card_mod:
  style: |
    ha-state-icon {
    color: {{'yellow' if is_state('automation.lamellen_46', 'on') else
    'red'}};
    }
    ha-card {
    border: none !important;
    --tile-color: transparent !important;
    height: 40px !important;        
    }
    div.container { 
    margin: -10px 2px 0px -12px !important;
    }

That fixed it! yay!
for all 3 tiles!