/* Target standard Elementor and WordPress menu items */
.elementor-nav-menu .menu-item a,
.menu-item a {
    position: relative;
    text-decoration: none;
    padding-bottom: 2px;
}

.elementor-nav-menu .menu-item a::after,
.menu-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: currentColor; /* Uses the link's current text color */
    transition: width 0.3s ease, left 0.3s ease;
}

.elementor-nav-menu .menu-item a:hover::after,
.menu-item a:hover::after,
.elementor-nav-menu .menu-item.current-menu-item > a::after,
.menu-item.current-menu-item > a::after {
    width: 100%;
    left: 0;
}
