body {
    font-family: sans-serif;
    text-align: center;
    padding: 50px;
}

#installBtn {
    display: none;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

ul {
    margin: 0; /* Quita el margen superior/inferior predeterminado de la lista */
    padding-left: 20px; /* Ajusta el sangrado si lo necesitas */
}

li {
    margin-bottom: 5px; /* Pequeño espacio entre cada paso */
    text-align: left;
        display: flex; /* Use flexbox for easier alignment */
    align-items: center; /* Vertically center items */
    gap: 8px; /* Add some space between the icon and text */
}



  /* Target the SVG specifically within the list item */
  li svg {
    /* Most common solutions */
    vertical-align: middle; /* Aligns the middle of the SVG with the middle of the text */
    /* or */
    /* vertical-align: -3px; /* Adjust this value as needed, negative moves it down */
    /* or */
    /* margin-top: 2px; /* Another way to nudge it down */
  }