/* Hide dropdowns by default */
.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    z-index: 1000; /* Ensure it's on top */
    background: white;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Show dropdown when parent is "open" */
.menu-item-has-children.open > .sub-menu {
    display: block;
}

/* Prevent sub-menus from interfering with other rows */
ul.menu,
ul.sub-menu {
    position: relative;
}

/* Visual highlight for current menu items */
.menu-item.current-menu-item > a,
.menu-item.current-menu-parent > a {
    font-weight: bold;
    /*color: #d6336c;*/
    color: #e5ae4a;
}

.menu-item-parent-link {
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    padding-bottom: 5px;
    display: block;
}
