﻿/* Style for the dropdown submenu */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%; /* Position submenu to the right */
        margin-top: 0; /* Align with the parent item */
        margin-left: 0;
        display: none; /* Hide submenu initially */
        z-index: 1050; /* Ensure it appears above other elements */
    }

        .dropdown-submenu:hover > .dropdown-menu,
        .dropdown-submenu > .dropdown-menu.show {
            display: block; /* Show the submenu */
        }

    /* Optional: Add a caret or arrow to indicate a submenu */
    /*.dropdown-submenu > .dropdown-item::after {
        content: "›";*/ /* Right-pointing arrow */
        /*float: right;
        margin-left: 5px;
        font-size: 12px;
        color: #6c757d;*/ /* Match Bootstrap text color */
    /*}*/
