.custom-sidebar {
    width: 312px;
    height: 100vh;
    box-shadow: none;
}

body .ui-widget-overlay {
    background: none;
}

body .ui-sidebar.ui-sidebar-active {
    border-right: none;
    box-shadow: none;
    transition: none;
}

body .ui-sidebar-close {
    display: none;
}

/** Dropdown and Search Styles **/

.select-menu, .search-container {
    width: 279px;
    position: relative;
    margin-top: 20px;
}

.select-menu .select-btn {
    display: flex;
    align-items: center;
    background: #fff;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #D0D5DD;
    cursor: pointer;
    justify-content: space-between;
    padding: 7px 20px;
}

.select-btn i, .search-icon i {
    font-size: 25px;
    color: #667085;
}

.select-btn span {
    color: #667085;
    font-weight: 400;
    font-size: 16px;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu .options, .search-container .options {
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e6eaf3;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    display: none;
}

.select-menu.active .options, .search-container.active .options {
    display: block;
}

.options .option:hover {
    background: #F2F2F2;
}

.option i {
    font-size: 25px;
    margin-right: 12px;
}

.option .option-text {
    color: #667085;
    font-weight: 400;
    font-size: 16px;
}

/** Search Input Styles **/

.search-container {
    display: flex;
    height: 44px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #D0D5DD;
    padding: 7px 50px 7px 15px;
}

.search-container input[type="text"] {
    flex-grow: 1;
    border: none;
    font-size: 16px;
    outline: none;
    color: #667085;
    padding-left: 30px;
}

.search-container .search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    scale: 0.8;
    transform: translateY(-60%);
    pointer-events: none;
}

.options .option {
    display: flex;
    height: 44px;
    cursor: pointer;
    padding-left: 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
}

/* Nav Links */
.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border: none;
    cursor: pointer;
}

.menu-item .menu-text {
    color: #344054;
    font-weight: 500;
    font-size: 16px;
}

.menu-item-no-child .menu-text {
    color: #344054;
    font-weight: 500;
    font-size: 16px;
}

.menu-item-no-child {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 0;
    border: none;
    cursor: pointer;
}

.menu-item-no-child i {
    padding-right: 10px;
}

.menu-item-no-child {
    transform: translateY(-3px);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item i:first-of-type {
    font-size: 20px;
    color: #333333;
}

.menu-item span {
    margin-left: 10px;
    font-weight: 500;
    color: #333333;
}

.sub-menu .sub-menu-item {
    color: #344054;
    font-weight: 500;
    font-size: 16px;
}

.sub-menu .content-with-icon-before {
    display: flex;
    align-items: center;
}

.sub-menu .content-with-icon-before .sub-menu-item {
    transform: translateX(-16px);
}

.sub-menu .content-with-icon-before i {
    transform: translateX(-5px);
}

.menu-item i:last-of-type {
    margin-left: auto;
    font-size: 20px;
    color: #333333;
    transition: transform 0.3s ease;
}

/* Submenu Styles */
.sub-menu {
    display: none;
    padding-left: 10px;
    background-color: transparent;
}

.sub-menu-item {
    padding: 8px 20px;
    cursor: pointer;
    color: #333333;
}

/* Active State Styles */
.menu-item.active > i:last-of-type {
    transform: rotate(180deg);
}

.menu-item.active + .sub-menu {
    display: block;
}

.menu-item i {
    font-size: 20px;
}

.menu-item-no-child i {
    font-size: 20px;
}