/* Position the submenu relative to its parent */
.submenu {
    position: relative;
}

/* Basic styling for the popup menu */
.popup-menu {
    display: none;
    position: absolute;
    top: 100%; /* position below the trigger */
    left: 0;
    background-color: #fff;
    border-radius: 15px;
    z-index: 1000;
    width: 250px;
    height: 132px;
}

/* Remove default list styles for the popup menu */
.popup-menu ul {
    border: 1px solid #343434;
    border-radius: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}


#popupMenu a {
    color: #000000;
}

#popupMenu ul li {
    display: flex;
    width: 100%;
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically */
    height: 66px;            /* optional: gives a height to see vertical centering */
}

/*---------------*/

