.p-menu {
    background-color: #fff;
    border: 1px solid #c1c1cc;
    border-radius: 4px;

    .p-menu-list {
        padding: 0;

        .p-submenu-header {
            color: #6e7280;
            padding: 8px;
        }

        .p-menuitem {
            &:first-child {
                border-radius: 4px 4px 0 0;
            }

            &:last-child {
                border-radius: 0 0 4px 4px;
            }

            &:hover {
                background-color: #f1f7f8;
            }

            .p-menuitem-link {
                color: #212533;
                display: flex;
                font-family: "Open Sans", sans-serif;
                font-size: 14px;
                gap: 12px;
                padding: 8px;
                text-decoration: none;
                user-select: none;

                .p-menuitem-text {
                    line-height: 1.5;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            }

            &.p-disabled {
                opacity: 0.5;
            }
        }
    }
}