.installation-steps .install-steps-content li {
    position: relative; /* Add this to ensure absolute positioning works correctly */
  }
  
  .installation-steps .install-steps-content li::before {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    display: inline-block;
    background-color: var(--md-sys-color-secondary);
    border-radius: 50%;
    left: 0;
  }
  
  .installation-steps .install-steps-content li::after {
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: 5px;
    width: 1px;
    background-color: var(--md-sys-color-secondary);
    z-index: -1;
    opacity: 0.7;
  }
  
  .installation-steps .install-steps-content li:last-child::after {
    content: none;
  }