.menuquick-links > li {
    border-bottom: 1px solid #9f9f9f40;
}

/* Container styling for the custom class */
.menu-divided .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual Menu Items */
.menu-divided .menu li {
    margin: 0;
    padding: 0;
    /* This creates the dark divider line */
    border-bottom: 1px solid #9f9f9f40; 
}

/* Remove the divider from the very last item so it looks clean */
.menu-divided .menu li:last-child {
    border-bottom: none;
}

/* Link Styling */
.menu-divided .menu li a {
    display: block;
    padding-bottom: 10px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* Hover State */
.menu-divided .menu li a:hover {
    padding-left: 8px; /* Subtle "nudge" effect */
}