<style>
  /* Hide the vertical line after the last day */
  #accordion .last-day::after {
    content: "";
    position: absolute;
    left: -2.5rem; /* aligns with the line */
    bottom: 0;
    width: 2px;
    height: 0;
    background-color: transparent; /* hides the line */
  }

  /* Shorten the global vertical line so it stops before the last dot */
  #accordion > .absolute {
    height: calc(100% - 2rem); /* adjust to fine-tune ending point */
  }
</style>
