/* Add left border to all list items except the first */
.custom-menu li a {
    border-left: 2px solid #267f71; /* Change color and thickness as needed */
    padding-left: 10px; /* Optional: Add spacing */
}

/* Remove the border from the first list item */
.custom-menu li:first-child a {
    border-left: none;
}