/* ===============================
   NESTED SIDEBAR DROPDOWN CUSTOM
================================= */

.az-menu-sub .nav-item {
    position: relative;
}

.az-menu-sub .nested-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #dcdcdc;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.custom-nested-menu {
    position: relative;
}

.custom-nested-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom-nested-trigger::after {
    content: "\25B8";
    font-size: 12px;
    margin-left: 10px;
}

.custom-nested-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 8px 0;
    border-radius: 4px;
}

.custom-nested-menu.active .custom-nested-submenu {
    display: block;
}

.az-menu-sub .with-sub::after {
    content: "\25B8";
    float: right;
    margin-left: 10px;
    font-size: 12px;
}

