/* Initial state of the dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff; /* Adjust the background color as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Styles for the dropdown items */
.child-menu-list {
    list-style: none;
    font-weight: 400;
}

.child-menu-list a {
    display: block;
    padding: 10px 15px;
    color: #333; /* Adjust the text color as needed */
    text-decoration: none;
}

.child-menu-list a:hover {
    background-color: #f0f0f0; /* Adjust the hover background color as needed */
}

/* Ensure the parent container is positioned relative */
.nav-item.dropdown {
    position: relative;
}


/*sub-menu items*/
.child-menu-list {
    padding: 10px;
}

.child-menu-list:not(:last-child) {
    border-bottom: 1px solid rgb(212, 212, 212);
}

.child-menu-list a {
    color: black;
    font-weight: 400;
    margin-right: 10px;
    margin-left: 10px;
    white-space: nowrap;
}

.child-menu-list a:hover,
.child-menu-list a.active {
    color: #0e9795;
    background-color: transparent;
}

.right-arrow {
    margin-left: 11px;
    padding-top: 5px;
    font-size: 14px;
    color: #28a745;
}