.Sidebar {
    min-height: 100vh;
    padding: 20px 15px;
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000026;
    border-radius: 0px 13px 13px 0px;
    opacity: 1;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

.Sidebar .logo_holder {
    text-align: center;
    margin-bottom: 15px;
}

.Sidebar .sidebar_logo {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.Sidebar .menu_holder {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Sidebar .menu_holder .nav-item {
    margin-bottom: 12px;
}

.Sidebar .menu_holder .nav-link {
    background: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 8px 15px;
    color: #191a15;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    line-height: 1.3;
}

.Sidebar .menu_holder .nav-link.active {
    background: #191a15 0% 0% no-repeat padding-box;
    color: #fff;
    font-weight: 600;
}

.Sidebar .menu_holder .nav-link:hover {
    background: #191a15;
    color: #fff;
}

/* Override Bootstrap Accordion to match your .nav-link style */
.Sidebar .menu_holder .custom-acc-btn {
    background: #fff !important;
    border: 1px solid #000 !important;
    border-radius: 8px !important;
    color: #191a15 !important;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 15px;
    box-shadow: none !important;
}

.Sidebar .menu_holder .custom-acc-btn:not(.collapsed) {
    background: #191a15 !important;
    color: #fff !important;
    font-weight: 600;
}

.Sidebar .menu_holder .custom-acc-btn:hover {
    background: #191a15 !important;
    color: #fff !important;
}

/* Remove default backgrounds */
.Sidebar .menu_holder .accordion-item,
.Sidebar .menu_holder .accordion-header,
.Sidebar .menu_holder .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
}

.Sidebar .menu_holder .accordion-button:not(.collapsed)::after {
    filter: invert(1);
    color: #fff;
    opacity: 1;
}

/* Submenu list */
.Sidebar .menu_holder .submenu-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.Sidebar .menu_holder .submenu-list .nav-link {
    font-size: 15px;
    padding: 6px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
}

@media (min-width: 0px) and (max-width: 486px) {
    .Sidebar .menu_holder .nav-link {
        font-size: 9px;
        padding: 4px 4px;
        border-radius: 5px;
    }

    .Sidebar .menu_holder .submenu-list {
    padding-left: 0px;
}

.Sidebar .menu_holder .submenu-list .nav-link {
    font-size: 10px;
    padding: 4px 4px;
    border-radius: 5px;
}

    .Sidebar .menu_holder .custom-acc-btn {
        font-size: 9px;
        padding: 4px 4px;
        border-radius: 5px;
    }

    .Sidebar {
        padding: 2px 2px;
    }

    .Sidebar .sidebar_logo {
        height: 50px;
    }
}

@media (min-width: 487px) and (max-width: 767px) {
    .Sidebar {
        padding: 7px 7px;
    }

    .Sidebar .sidebar_logo {
        height: 50px;
    }

    .Sidebar .menu_holder .nav-link {
        font-size: 10px;
        padding: 7px 7px;
    }

    .Sidebar .menu_holder .custom-acc-btn {
        font-size: 10px;
        padding: 7px 7px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .Sidebar .sidebar_logo {
        height: 45px;
    }

    .Sidebar {
        padding: 10px 10px;
    }

    .Sidebar .menu_holder .nav-link {
        padding: 7px 7px;
        font-size: 13px;
    }

    .Sidebar .menu_holder .custom-acc-btn {
        font-size: 13px;
        padding: 7px 7px;
    }

    .Sidebar .menu_holder .submenu-list .nav-link {
        font-size: 13px;
        padding: 7px 7px;
    }
}
