.RECO_SidePanel_Nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;

    .RECO_MenuGroup {
        width: 100%;
    }
    
    .RECO_MenuGroup--bottom {
        margin-top: auto;
        display: grid;
        gap: 16px;
    }

    .UI_List {
        border-top: none;
    }

    .UI_ListItem {
        color: var(--MainText2);
        text-decoration: none;

        &.RECO_MenuActionLink {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;

            .RECO_MenuActionLinkLabel {
                min-width: 0;
            }

            .RECO_MenuActionLinkIcon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: var(--SubText2, #999);
                font-size: 0.8rem;
                flex-shrink: 0;
                opacity: 0.8;
                transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
            }

            &.is-open {
                background-color: var(--Gray_Light7);

                .RECO_MenuActionLinkIcon {
                    transform: rotate(180deg);
                    color: var(--AccentColor, #4a90d9);
                    opacity: 1;
                }
            }

            &:hover,
            &:focus-visible {
                .RECO_MenuActionLinkIcon {
                    opacity: 1;
                }
            }
        }

        &.is-disabled {
            color: var(--LightText2);
            cursor: default;
        }

        &.is-disabled:hover {
            background-color: transparent;
        }
    }

    .RECO_LogoutButton {
        width: 100%;
        text-align: center;
    }
}
